Showing preview only (2,908K chars total). Download the full file or copy to clipboard to get everything.
Repository: alfathdirk/LIN3-TCR
Branch: master
Commit: 9781b9aacdab
Files: 15
Total size: 2.8 MB
Directory structure:
gitextract_snh0bt2x/
├── .gitignore
├── LINETCR/
│ ├── Api/
│ │ ├── LineTracer.py
│ │ ├── Poll.py
│ │ ├── Talk.py
│ │ ├── __init__.py
│ │ └── channel.py
│ ├── LineApi.py
│ ├── __init__.py
│ └── lib/
│ ├── __init__.py
│ └── curve/
│ ├── LineService.py
│ ├── __init__.py
│ ├── constants.py
│ └── ttypes.py
├── README.md
└── tcr.py
================================================
FILE CONTENTS
================================================
================================================
FILE: .gitignore
================================================
*.pyc
================================================
FILE: LINETCR/Api/LineTracer.py
================================================
# -*- coding: utf-8 -*-
from .LineClient import LineClient
from types import *
from ..lib.curve.ttypes import OpType
from ..Net.LineServer import url
class LineTracer(object):
OpInterrupt = {}
client = None
def __init__(self, client):
if type(client) is not LineClient:
raise Exception(
"You need to set LineClient instance to initialize LineTracer")
self.client = client
self.client.endPoint(url.LONG_POLLING)
def addOpInterruptWithDict(self, OpInterruptDict):
"""To add Operation with Callback function {Optype.NOTIFIED_INTO_GROUP: func}"""
self.OpInterrupt.update(OpInterruptDict)
def addOpInterrupt(self, OperationType, DisposeFunc):
self.OpInterrupt[OperationType] = DisposeFunc
def execute(self):
try:
operations = self.client.fetchOperation(self.client.revision, 10)
#print "======================================================="
# print operations
#print "======================================================="
except EOFError:
return
except KeyboardInterrupt:
exit()
except:
return
for op in operations:
if op.type in self.OpInterrupt.keys():
#print "======================================================="
#print str(op.type) + "[" + str(op) + "]"
#print "======================================================="
self.OpInterrupt[op.type](op)
self.client.revision = max(op.revision, self.client.revision)
================================================
FILE: LINETCR/Api/Poll.py
================================================
import os, sys, time
path = os.path.join(os.path.dirname(__file__), '../lib/')
sys.path.insert(0, path)
from thrift.transport import THttpClient
from thrift.protocol import TCompactProtocol
from curve import LineService
from curve.ttypes import *
class Poll:
client = None
auth_query_path = "/api/v4/TalkService.do";
http_query_path = "/S4";
polling_path = "/P4";
host = "gd2.line.naver.jp";
port = 443;
UA = "Line/6.0.0 iPad4,1 9.0.2"
LA = "DESKTOPMAC 10.10.2-YOSEMITE-x64 MAC 4.5.0"
rev = 0
def __init__(self, authToken):
self.transport = THttpClient.THttpClient('https://gd2.line.naver.jp:443'+ self.http_query_path)
self.transport.setCustomHeaders({
"User-Agent" : self.UA,
"X-Line-Application" : self.LA,
"X-Line-Access": authToken
});
self.protocol = TCompactProtocol.TCompactProtocol(self.transport);
self.client = LineService.Client(self.protocol)
self.rev = self.client.getLastOpRevision()
self.transport.path = self.polling_path
self.transport.open()
def stream(self, sleep=50000):
#usleep = lambda x: time.sleep(x/1000000.0)
while True:
try:
Ops = self.client.fetchOps(self.rev, 5)
except EOFError:
raise Exception("It might be wrong revision\n" + str(self.rev))
for Op in Ops:
# print Op.type
if (Op.type != OpType.END_OF_OPERATION):
self.rev = max(self.rev, Op.revision)
return Op
#usleep(sleep)
================================================
FILE: LINETCR/Api/Talk.py
================================================
# -*- coding: utf-8 -*-
import os, sys
path = os.path.join(os.path.dirname(__file__), '../lib/')
sys.path.insert(0, path)
import requests, rsa
from thrift.transport import THttpClient
from thrift.protocol import TCompactProtocol
from curve import LineService
from curve.ttypes import *
class Talk:
client = None
auth_query_path = "/api/v4/TalkService.do";
http_query_path = "/S4";
wait_for_mobile_path = "/Q";
host = "gd2.line.naver.jp";
port = 443;
UA = "Line/6.0.0 iPad4,1 9.0.2"
LA = "DESKTOPMAC 10.10.2-YOSEMITE-x64 MAC 4.5.0"
authToken = None
cert = None
def __init__(self):
self.transport = THttpClient.THttpClient('https://gd2.line.naver.jp:443'+self.auth_query_path)
self.transport.setCustomHeaders({
"User-Agent" : self.UA,
"X-Line-Application" : self.LA,
})
self.transport.open()
self.protocol = TCompactProtocol.TCompactProtocol(self.transport);
self.client = LineService.Client(self.protocol)
def login(self, mail, passwd, cert=None, callback=None):
self.transport.path = self.auth_query_path
rsakey = self.client.getRSAKeyInfo(IdentityProvider.LINE)
crypt = self.__crypt(mail, passwd, rsakey)
result = self.client.loginWithIdentityCredentialForCertificate(
IdentityProvider.LINE,
rsakey.keynm,
crypt,
True,
'127.0.0.1',
'http://dg.b9dm.com/KoenoKatachi.mp4',
cert
)
if result.type == 3:
callback(result.pinCode)
header = {"X-Line-Access": result.verifier}
r = requests.get(url="https://" + self.host + self.wait_for_mobile_path, headers=header)
result = self.client.loginWithVerifierForCerificate(r.json()["result"]["verifier"])
self.transport.setCustomHeaders({
"X-Line-Application" : self.LA,
"User-Agent" : self.UA,
"X-Line-Access" : result.authToken
})
self.authToken = result.authToken
self.cert = result.certificate
self.transport.path = self.http_query_path
elif result.type == 1:
self.authToken = result.authToken
self.cert = result.certificate
self.transport.setCustomHeaders({
"X-Line-Application" : self.LA,
"User-Agent" : self.UA,
"X-Line-Access" : result.authToken
})
self.transport.path = self.http_query_path
def TokenLogin(self, authToken):
self.transport.setCustomHeaders({
"X-Line-Application" : self.LA,
"User-Agent" : self.UA,
"X-Line-Access" : authToken,
})
self.authToken = authToken
self.transport.path = self.http_query_path
def qrLogin(self, callback):
self.transport.path = self.auth_query_path
qr = self.client.getAuthQrcode(True, "Bot")
callback("Copy to Line and Click\nYour LINK QR is: line://au/q/" + qr.verifier)
r = requests.get("https://" + self.host + self.wait_for_mobile_path, headers={
"X-Line-Application": self.LA,
"X-Line-Access": qr.verifier,
})
vr = r.json()["result"]["verifier"]
lr = self.client.loginWithVerifierForCerificate(vr)
self.transport.setCustomHeaders({
"X-Line-Application" : self.LA,
"User-Agent" : self.UA,
"X-Line-Access": lr.authToken
})
self.authToken = lr.authToken
self.cert = lr.certificate
self.transport.path = self.http_query_path
def __crypt(self, mail, passwd, RSA):
message = (chr(len(RSA.sessionKey)) + RSA.sessionKey +
chr(len(mail)) + mail +
chr(len(passwd)) + passwd).encode('utf-8')
pub_key = rsa.PublicKey(int(RSA.nvalue, 16), int(RSA.evalue, 16))
crypto = rsa.encrypt(message, pub_key).encode('hex')
return crypto
================================================
FILE: LINETCR/Api/__init__.py
================================================
from Talk import Talk
from Poll import Poll
from channel import Channel
================================================
FILE: LINETCR/Api/channel.py
================================================
# -*- coding: utf-8 -*-
import os, sys, json
path = os.path.join(os.path.dirname(__file__), '../lib/')
sys.path.insert(0, path)
import requests
from thrift.transport import THttpClient
from thrift.protocol import TCompactProtocol
from curve import LineService
from curve.ttypes import *
import tempfile
class Channel:
client = None
host = "gd2.line.naver.jp"
http_query_path = "/S4"
channel_query_path = "/CH4"
UA = "Line/6.0.0 iPad4,1 9.0.2"
LA = "DESKTOPMAC 10.10.2-YOSEMITE-x64 MAC 4.5.0"
authToken = None
mid = None
channel_access_token = None
token = None
obs_token = None
refresh_token = None
def __init__(self, authToken):
self.authToken = authToken
self.transport = THttpClient.THttpClient('https://gd2.line.naver.jp:443'+self.http_query_path)
self.transport.setCustomHeaders({ "User-Agent" : self.UA,
"X-Line-Application" : self.LA,
"X-Line-Access": self.authToken
})
self.transport.open()
self.protocol = TCompactProtocol.TCompactProtocol(self.transport)
self.client = LineService.Client(self.protocol)
self.mid = self.client.getProfile().mid
self.transport.path = self.channel_query_path
def login(self):
result = self.client.issueChannelToken("1341209950")
self.channel_access_token = result.channelAccessToken
self.token = result.token
self.obs_token = result.obsToken
self.refresh_token = result.refreshToken
print "channelAccessToken:" + result.channelAccessToken
print "token:" + result.token
print "obs_token:" + result.obsToken
print "refreshToken:" + result.refreshToken
def new_post(self, text):
header = {
"Content-Type": "application/json",
"User-Agent" : self.UA,
"X-Line-Mid" : self.mid,
"x-lct" : self.channel_access_token,
}
payload = {
"postInfo" : { "readPermission" : { "type" : "ALL" } },
"sourceType" : "TIMELINE",
"contents" : { "text" : text }
}
r = requests.post(
"http://" + self.host + "/mh/api/v24/post/create.json",
headers = header,
data = json.dumps(payload)
)
return r.json()
def postPhoto(self,text,path):
header = {
"Content-Type": "application/json",
"User-Agent" : self.UA,
"X-Line-Mid" : self.mid,
"x-lct" : self.channel_access_token,
}
payload = {
"postInfo" : { "readPermission" : { "type" : "ALL" } },
"sourceType" : "TIMELINE",
"contents" : { "text" : text ,"media" : [{u'objectId': u'F57144CF9ECC4AD2E162E68554D1A8BD1a1ab0t04ff07f6'}]}
}
r = requests.post(
"http://" + self.host + "/mh/api/v24/post/create.json",
headers = header,
data = json.dumps(payload)
)
return r.json()
def like(self, mid, postid, likeType=1001):
header = {
"Content-Type" : "application/json",
"X-Line-Mid" : self.mid,
"x-lct" : self.channel_access_token,
}
payload = {
"likeType" : likeType,
"activityExternalId" : postid,
"actorId" : mid
}
r = requests.post(
"http://" + self.host + "/mh/api/v23/like/create.json?homeId=" + mid,
headers = header,
data = json.dumps(payload)
)
return r.json()
def comment(self, mid, postid, text):
header = {
"Content-Type" : "application/json",
"X-Line-Mid" : self.mid,
"x-lct" : self.channel_access_token,
}
payload = {
"commentText" : text,
"activityExternalId" : postid,
"actorId" : mid
}
r = requests.post(
"http://" + self.host + "/mh/api/v23/comment/create.json?homeId=" + mid,
headers = header,
data = json.dumps(payload)
)
return r.json()
def activity(self, limit=20):
header = {
"Content-Type" : "application/json",
"X-Line-Mid" : self.mid,
"x-lct" : self.channel_access_token,
}
r = requests.get(
"http://" + self.host + "/tl/mapi/v21/activities?postLimit=" + str(limit),
headers = header
)
return r.json()
def getAlbum(self, gid):
header = {
"Content-Type" : "application/json",
"X-Line-Mid" : self.mid,
"x-lct": self.channel_access_token,
}
r = requests.get(
"http://" + self.host + "/mh/album/v3/albums?type=g&sourceType=TALKROOM&homeId=" + gid,
headers = header
)
return r.json()
def changeAlbumName(self,gid,name,albumId):
header = {
"Content-Type" : "application/json",
"X-Line-Mid" : self.mid,
"x-lct": self.channel_access_token,
}
payload = {
"title": name
}
r = requests.put(
"http://" + self.host + "/mh/album/v3/album/" + albumId + "?homeId=" + gid,
headers = header,
data = json.dumps(payload),
)
return r.json()
def deleteAlbum(self,gid,albumId):
header = {
"Content-Type" : "application/json",
"X-Line-Mid" : self.mid,
"x-lct": self.channel_access_token,
}
r = requests.delete(
"http://" + self.host + "/mh/album/v3/album/" + albumId + "?homeId=" + gid,
headers = header,
)
return r.json()
def getNote(self,gid, commentLimit, likeLimit):
header = {
"Content-Type" : "application/json",
"X-Line-Mid" : self.mid,
"x-lct": self.channel_access_token,
}
r = requests.get(
"http://" + self.host + "/mh/api/v27/post/list.json?homeId=" + gid + "&commentLimit=" + commentLimit + "&sourceType=TALKROOM&likeLimit=" + likeLimit,
headers = header
)
return r.json()
def postNote(self, gid, text):
header = {
"Content-Type": "application/json",
"User-Agent" : self.UA,
"X-Line-Mid" : self.mid,
"x-lct" : self.channel_access_token,
}
payload = {"postInfo":{"readPermission":{"homeId":gid}},
"sourceType":"GROUPHOME",
"contents":{"text":text}
}
r = requests.post(
"http://" + self.host + "/mh/api/v27/post/create.json",
headers = header,
data = json.dumps(payload)
)
return r.json()
def getDetail(self, mid):
header = {
"Content-Type": "application/json",
"User-Agent" : self.UA,
"X-Line-Mid" : self.mid,
"x-lct" : self.channel_access_token,
}
r = requests.get(
"http://" + self.host + "/ma/api/v1/userpopup/getDetail.json?userMid=" + mid,
headers = header
)
return r.json()
def getHome(self,mid):
header = {
"Content-Type": "application/json",
"User-Agent" : self.UA,
"X-Line-Mid" : self.mid,
"x-lct" : self.channel_access_token,
}
r = requests.get(
"http://" + self.host + "/mh/api/v27/post/list.json?homeId=" + mid + "&commentLimit=2&sourceType=LINE_PROFILE_COVER&likeLimit=6",
headers = header
)
return r.json()
def getCover(self,mid):
h = self.getHome(mid)
objId = h["result"]["homeInfo"]["objectId"]
return "http://dl.profile.line-cdn.net/myhome/c/download.nhn?userid=" + mid + "&oid=" + objId
def createAlbum(self,gid,name):
header = {
"Content-Type": "application/json",
"User-Agent" : self.UA,
"X-Line-Mid" : self.mid,
"x-lct" : self.channel_access_token,
}
payload = {
"type" : "image",
"title" : name
}
r = requests.post(
"http://" + self.host + "/mh/album/v3/album?count=1&auto=0&homeId=" + gid,
headers = header,
data = json.dumps(payload)
)
return r.json()
def createAlbum2(self,gid,name,path,oid):
header = {
"Content-Type": "application/json",
"User-Agent" : self.UA,
"X-Line-Mid" : self.mid,
"x-lct" : self.channel_access_token,
}
payload = {
"type" : "image",
"title" : name
}
r = requests.post(
"http://" + self.host + "/mh/album/v3/album?count=1&auto=0&homeId=" + gid,
headers = header,
data = json.dumps(payload)
)
#albumId = r.json()["result"]["items"][0]["id"]
#h = {
# "Content-Type": "application/x-www-form-urlencoded",
# "User-Agent" : self.UA,
# "X-Line-Mid" : gid,
# "X-Line-Album" : albumId,
# "x-lct" : self.channel_access_token,
#"x-obs-host" : "obs-jp.line-apps.com:443",
#}
#print r.json()
#files = {
# 'file': open(path, 'rb'),
#}
#p = {
# "userid" : gid,
# "type" : "image",
# "oid" : oid,
# "ver" : "1.0"
#}
#data = {
# 'params': json.dumps(p)
#}
#r = requests.post(
#"http://obs-jp.line-apps.com/oa/album/a/object_info.nhn:443",
#headers = h,
#data = data,
#files = files
#)
return r.json()
#cl.createAlbum("cea9d61ba824e937aaf91637991ac934b","ss3ai","kawamuki.png")
================================================
FILE: LINETCR/LineApi.py
================================================
# -*- coding: utf-8 -*-
from Api import Poll, Talk, channel
from lib.curve.ttypes import *
def def_callback(str):
print(str)
class LINE:
mid = None
authToken = None
cert = None
channel_access_token = None
token = None
obs_token = None
refresh_token = None
def __init__(self):
self.Talk = Talk()
def login(self, mail=None, passwd=None, cert=None, token=None, qr=False, callback=None):
if callback is None:
callback = def_callback
resp = self.__validate(mail,passwd,cert,token,qr)
if resp == 1:
self.Talk.login(mail, passwd, callback=callback)
elif resp == 2:
self.Talk.login(mail,passwd,cert, callback=callback)
elif resp == 3:
self.Talk.TokenLogin(token)
elif resp == 4:
self.Talk.qrLogin(callback)
else:
raise Exception("invalid arguments")
self.authToken = self.Talk.authToken
self.cert = self.Talk.cert
self._headers = {
'X-Line-Application': 'DESKTOPMAC 10.10.2-YOSEMITE-x64 MAC 4.5.0',
'X-Line-Access': self.authToken,
'User-Agent': 'Line/6.0.0 iPad4,1 9.0.2'
}
self.Poll = Poll(self.authToken)
self.channel = channel.Channel(self.authToken)
self.channel.login()
self.mid = self.channel.mid
self.channel_access_token = self.channel.channel_access_token
self.token = self.channel.token
self.obs_token = self.channel.obs_token
self.refresh_token = self.channel.refresh_token
"""User"""
def getProfile(self):
return self.Talk.client.getProfile()
def getSettings(self):
return self.Talk.client.getSettings()
def getUserTicket(self):
return self.Talk.client.getUserTicket()
def updateProfile(self, profileObject):
return self.Talk.client.updateProfile(0, profileObject)
def updateSettings(self, settingObject):
return self.Talk.client.updateSettings(0, settingObject)
"""Operation"""
def fetchOperation(self, revision, count):
return self.Poll.client.fetchOperations(revision, count)
def fetchOps(self, rev, count):
return self.Poll.client.fetchOps(rev, count, 0, 0)
def getLastOpRevision(self):
return self.Talk.client.getLastOpRevision()
def stream(self):
return self.Poll.stream()
"""Message"""
def sendMessage(self, messageObject):
return self.Talk.client.sendMessage(0,messageObject)
def sendText(self, Tomid, text):
msg = Message()
msg.to = Tomid
msg.text = text
return self.Talk.client.sendMessage(0, msg)
def post_content(self, url, data=None, files=None):
return self._session.post(url, headers=self._headers, data=data, files=files)
def sendImage(self, to_, path):
M = Message(to=to_, text=None, contentType = 1)
M.contentMetadata = None
M.contentPreview = None
M_id = self.Talk.client.sendMessage(0,M).id
files = {
'file': open(path, 'rb'),
}
params = {
'name': 'media',
'oid': M_id,
'size': len(open(path, 'rb').read()),
'type': 'image',
'ver': '1.0',
}
data = {
'params': json.dumps(params)
}
r = self.post_content('https://os.line.naver.jp/talk/m/upload.nhn', data=data, files=files)
print r
if r.status_code != 201:
raise Exception('Upload image failure.')
return True
def sendImageWithURL(self, to_, url):
"""Send a image with given image url
:param url: image url to send
"""
path = 'tmp/pythonLine.data'
r = requests.get(url, stream=True)
if r.status_code == 200:
with open(path, 'w') as f:
shutil.copyfileobj(r.raw, f)
else:
raise Exception('Download image failure.')
try:
self.sendImage(to_, path)
except Exception as e:
raise e
def sendEvent(self, messageObject):
return self._client.sendEvent(0, messageObject)
def sendChatChecked(self, mid, lastMessageId):
return self.Talk.client.sendChatChecked(0, mid, lastMessageId)
def getMessageBoxCompactWrapUp(self, mid):
return self.Talk.client.getMessageBoxCompactWrapUp(mid)
def getMessageBoxCompactWrapUpList(self, start, messageBox):
return self.Talk.client.getMessageBoxCompactWrapUpList(start, messageBox)
def getRecentMessages(self, messageBox, count):
return self.Talk.client.getRecentMessages(messageBox.id, count)
def getMessageBox(self, channelId, messageboxId, lastMessagesCount):
return self.Talk.client.getMessageBox(channelId, messageboxId, lastMessagesCount)
def getMessageBoxList(self, channelId, lastMessagesCount):
return self.Talk.client.getMessageBoxList(channelId, lastMessagesCount)
def getMessageBoxListByStatus(self, channelId, lastMessagesCount, status):
return self.Talk.client.getMessageBoxListByStatus(channelId, lastMessagesCount, status)
def getMessageBoxWrapUp(self, mid):
return self.Talk.client.getMessageBoxWrapUp(mid)
def getMessageBoxWrapUpList(self, start, messageBoxCount):
return self.Talk.client.getMessageBoxWrapUpList(start, messageBoxCount)
"""Contact"""
def blockContact(self, mid):
return self.Talk.client.blockContact(0, mid)
def unblockContact(self, mid):
return self.Talk.client.unblockContact(0, mid)
def findAndAddContactsByMid(self, mid):
return self.Talk.client.findAndAddContactsByMid(0, mid)
def findAndAddContactsByMids(self, midlist):
for i in midlist:
self.Talk.client.findAndAddContactsByMid(0, i)
def findAndAddContactsByUserid(self, userid):
return self.Talk.client.findAndAddContactsByUserid(0, userid)
def findContactsByUserid(self, userid):
return self.Talk.client.findContactByUserid(userid)
def findContactByTicket(self, ticketId):
return self.Talk.client.findContactByUserTicket(ticketId)
def getAllContactIds(self):
return self.Talk.client.getAllContactIds()
def getBlockedContactIds(self):
return self.Talk.client.getBlockedContactIds()
def getContact(self, mid):
return self.Talk.client.getContact(mid)
def getContacts(self, midlist):
return self.Talk.client.getContacts(midlist)
def getFavoriteMids(self):
return self.Talk.client.getFavoriteMids()
def getHiddenContactMids(self):
return self.Talk.client.getHiddenContactMids()
"""Group"""
def findGroupByTicket(self, ticketId):
return self.Talk.client.findGroupByTicket(ticketId)
def acceptGroupInvitation(self, groupId):
return self.Talk.client.acceptGroupInvitation(0, groupId)
def acceptGroupInvitationByTicket(self, groupId, ticketId):
return self.Talk.client.acceptGroupInvitationByTicket(0, groupId, ticketId)
def cancelGroupInvitation(self, groupId, contactIds):
return self.Talk.client.cancelGroupInvitation(0, groupId, contactIds)
def createGroup(self, name, midlist):
return self.Talk.client.createGroup(0, name, midlist)
def getGroup(self, groupId):
return self.Talk.client.getGroup(groupId)
def getGroups(self, groupIds):
return self.Talk.client.getGroups(groupIds)
def getGroupIdsInvited(self):
return self.Talk.client.getGroupIdsInvited()
def getGroupIdsJoined(self):
return self.Talk.client.getGroupIdsJoined()
def inviteIntoGroup(self, groupId, midlist):
return self.Talk.client.inviteIntoGroup(0, groupId, midlist)
def kickoutFromGroup(self, groupId, midlist):
return self.Talk.client.kickoutFromGroup(0, groupId, midlist)
def leaveGroup(self, groupId):
return self.Talk.client.leaveGroup(0, groupId)
def rejectGroupInvitation(self, groupId):
return self.Talk.client.rejectGroupInvitation(0, groupId)
def reissueGroupTicket(self, groupId):
return self.Talk.client.reissueGroupTicket(groupId)
def updateGroup(self, groupObject):
return self.Talk.client.updateGroup(0, groupObject)
def findGroupByTicket(self,ticketId):
return self.Talk.client.findGroupByTicket(0,ticketId)
"""Room"""
def createRoom(self, midlist):
return self.Talk.client.createRoom(0, midlist)
def getRoom(self, roomId):
return self.Talk.client.getRoom(roomId)
def inviteIntoRoom(self, roomId, midlist):
return self.Talk.client.inviteIntoRoom(0, roomId, midlist)
def leaveRoom(self, roomId):
return self.Talk.client.leaveRoom(0, roomId)
"""TIMELINE"""
def new_post(self, text):
return self.channel.new_post(text)
def like(self, mid, postid, likeType=1001):
return self.channel.like(mid, postid, likeType)
def comment(self, mid, postid, text):
return self.channel.comment(mid, postid, text)
def activity(self, limit=20):
return self.channel.activity(limit)
def getAlbum(self, gid):
return self.channel.getAlbum(gid)
def changeAlbumName(self, gid, name, albumId):
return self.channel.changeAlbumName(gid, name, albumId)
def deleteAlbum(self, gid, albumId):
return self.channel.deleteAlbum(gid,albumId)
def getNote(self,gid, commentLimit, likeLimit):
return self.channel.getNote(gid, commentLimit, likeLimit)
def getDetail(self,mid):
return self.channel.getDetail(mid)
def getHome(self,mid):
return self.channel.getHome(mid)
def createAlbum(self, gid, name):
return self.channel.createAlbum(gid,name)
def createAlbum2(self, gid, name, path):
return self.channel.createAlbum(gid, name, path, oid)
def __validate(self, mail, passwd, cert, token, qr):
if mail is not None and passwd is not None and cert is None:
return 1
elif mail is not None and passwd is not None and cert is not None:
return 2
elif token is not None:
return 3
elif qr is True:
return 4
else:
return 5
def loginResult(self, callback=None):
if callback is None:
callback = def_callback
prof = self.getProfile()
print("MikanBOT")
print("mid -> " + prof.mid)
print("name -> " + prof.displayName)
print("authToken -> " + self.authToken)
print("cert -> " + self.cert if self.cert is not None else "")
================================================
FILE: LINETCR/__init__.py
================================================
# -*- coding: utf-8 -*-
from LineApi import LINE
from lib.curve.ttypes import *
================================================
FILE: LINETCR/lib/__init__.py
================================================
# -*- coding: utf-8 -*-
================================================
FILE: LINETCR/lib/curve/LineService.py
================================================
#
# Autogenerated by Thrift Compiler (0.9.3)
#
# DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
#
# options string: py
#
from thrift.Thrift import TType, TMessageType, TException, TApplicationException
import logging
from ttypes import *
from thrift.Thrift import TProcessor
from thrift.transport import TTransport
from thrift.protocol import TBinaryProtocol, TProtocol
try:
from thrift.protocol import fastbinary
except:
fastbinary = None
class Iface:
def getRSAKey(self):
pass
def notifyEmailConfirmationResult(self, parameterMap):
"""
Parameters:
- parameterMap
"""
pass
def registerVirtualAccount(self, locale, encryptedVirtualUserId, encryptedPassword):
"""
Parameters:
- locale
- encryptedVirtualUserId
- encryptedPassword
"""
pass
def requestVirtualAccountPasswordChange(self, virtualMid, encryptedVirtualUserId, encryptedOldPassword, encryptedNewPassword):
"""
Parameters:
- virtualMid
- encryptedVirtualUserId
- encryptedOldPassword
- encryptedNewPassword
"""
pass
def requestVirtualAccountPasswordSet(self, virtualMid, encryptedVirtualUserId, encryptedNewPassword):
"""
Parameters:
- virtualMid
- encryptedVirtualUserId
- encryptedNewPassword
"""
pass
def unregisterVirtualAccount(self, virtualMid):
"""
Parameters:
- virtualMid
"""
pass
def checkUserAge(self, carrier, sessionId, verifier, standardAge):
"""
Parameters:
- carrier
- sessionId
- verifier
- standardAge
"""
pass
def checkUserAgeWithDocomo(self, openIdRedirectUrl, standardAge, verifier):
"""
Parameters:
- openIdRedirectUrl
- standardAge
- verifier
"""
pass
def retrieveOpenIdAuthUrlWithDocomo(self):
pass
def retrieveRequestToken(self, carrier):
"""
Parameters:
- carrier
"""
pass
def addBuddyMember(self, requestId, userMid):
"""
Parameters:
- requestId
- userMid
"""
pass
def addBuddyMembers(self, requestId, userMids):
"""
Parameters:
- requestId
- userMids
"""
pass
def blockBuddyMember(self, requestId, mid):
"""
Parameters:
- requestId
- mid
"""
pass
def commitSendMessagesToAll(self, requestIdList):
"""
Parameters:
- requestIdList
"""
pass
def commitSendMessagesTomids(self, requestIdList, mids):
"""
Parameters:
- requestIdList
- mids
"""
pass
def containsBuddyMember(self, requestId, userMid):
"""
Parameters:
- requestId
- userMid
"""
pass
def downloadMessageContent(self, requestId, messageId):
"""
Parameters:
- requestId
- messageId
"""
pass
def downloadMessageContentPreview(self, requestId, messageId):
"""
Parameters:
- requestId
- messageId
"""
pass
def downloadProfileImage(self, requestId):
"""
Parameters:
- requestId
"""
pass
def downloadProfileImagePreview(self, requestId):
"""
Parameters:
- requestId
"""
pass
def getActiveMemberCountByBuddyMid(self, buddyMid):
"""
Parameters:
- buddyMid
"""
pass
def getActiveMemberMidsByBuddyMid(self, buddyMid):
"""
Parameters:
- buddyMid
"""
pass
def getAllBuddyMembers(self):
pass
def getBlockedBuddyMembers(self):
pass
def getBlockerCountByBuddyMid(self, buddyMid):
"""
Parameters:
- buddyMid
"""
pass
def getBuddyDetailByMid(self, buddyMid):
"""
Parameters:
- buddyMid
"""
pass
def getBuddyProfile(self):
pass
def getContactTicket(self):
pass
def getMemberCountByBuddyMid(self, buddyMid):
"""
Parameters:
- buddyMid
"""
pass
def getSendBuddyMessageResult(self, sendBuddyMessageRequestId):
"""
Parameters:
- sendBuddyMessageRequestId
"""
pass
def getSetBuddyOnAirResult(self, setBuddyOnAirRequestId):
"""
Parameters:
- setBuddyOnAirRequestId
"""
pass
def getUpdateBuddyProfileResult(self, updateBuddyProfileRequestId):
"""
Parameters:
- updateBuddyProfileRequestId
"""
pass
def isBuddyOnAirByMid(self, buddyMid):
"""
Parameters:
- buddyMid
"""
pass
def linkAndSendBuddyContentMessageToAllAsync(self, requestId, msg, sourceContentId):
"""
Parameters:
- requestId
- msg
- sourceContentId
"""
pass
def linkAndSendBuddyContentMessageTomids(self, requestId, msg, sourceContentId, mids):
"""
Parameters:
- requestId
- msg
- sourceContentId
- mids
"""
pass
def notifyBuddyBlocked(self, buddyMid, blockerMid):
"""
Parameters:
- buddyMid
- blockerMid
"""
pass
def notifyBuddyUnblocked(self, buddyMid, blockerMid):
"""
Parameters:
- buddyMid
- blockerMid
"""
pass
def registerBuddy(self, buddyId, searchId, displayName, statusMeessage, picture, settings):
"""
Parameters:
- buddyId
- searchId
- displayName
- statusMeessage
- picture
- settings
"""
pass
def registerBuddyAdmin(self, buddyId, searchId, displayName, statusMessage, picture):
"""
Parameters:
- buddyId
- searchId
- displayName
- statusMessage
- picture
"""
pass
def reissueContactTicket(self, expirationTime, maxUseCount):
"""
Parameters:
- expirationTime
- maxUseCount
"""
pass
def removeBuddyMember(self, requestId, userMid):
"""
Parameters:
- requestId
- userMid
"""
pass
def removeBuddyMembers(self, requestId, userMids):
"""
Parameters:
- requestId
- userMids
"""
pass
def sendBuddyContentMessageToAll(self, requestId, msg, content):
"""
Parameters:
- requestId
- msg
- content
"""
pass
def sendBuddyContentMessageToAllAsync(self, requestId, msg, content):
"""
Parameters:
- requestId
- msg
- content
"""
pass
def sendBuddyContentMessageTomids(self, requestId, msg, content, mids):
"""
Parameters:
- requestId
- msg
- content
- mids
"""
pass
def sendBuddyContentMessageTomidsAsync(self, requestId, msg, content, mids):
"""
Parameters:
- requestId
- msg
- content
- mids
"""
pass
def sendBuddyMessageToAll(self, requestId, msg):
"""
Parameters:
- requestId
- msg
"""
pass
def sendBuddyMessageToAllAsync(self, requestId, msg):
"""
Parameters:
- requestId
- msg
"""
pass
def sendBuddyMessageTomids(self, requestId, msg, mids):
"""
Parameters:
- requestId
- msg
- mids
"""
pass
def sendBuddyMessageTomidsAsync(self, requestId, msg, mids):
"""
Parameters:
- requestId
- msg
- mids
"""
pass
def sendIndividualEventToAllAsync(self, requestId, buddyMid, notificationStatus):
"""
Parameters:
- requestId
- buddyMid
- notificationStatus
"""
pass
def setBuddyOnAir(self, requestId, onAir):
"""
Parameters:
- requestId
- onAir
"""
pass
def setBuddyOnAirAsync(self, requestId, onAir):
"""
Parameters:
- requestId
- onAir
"""
pass
def storeMessage(self, requestId, messageRequest):
"""
Parameters:
- requestId
- messageRequest
"""
pass
def unblockBuddyMember(self, requestId, mid):
"""
Parameters:
- requestId
- mid
"""
pass
def unregisterBuddy(self, requestId):
"""
Parameters:
- requestId
"""
pass
def unregisterBuddyAdmin(self, requestId):
"""
Parameters:
- requestId
"""
pass
def updateBuddyAdminProfileAttribute(self, requestId, attributes):
"""
Parameters:
- requestId
- attributes
"""
pass
def updateBuddyAdminProfileImage(self, requestId, picture):
"""
Parameters:
- requestId
- picture
"""
pass
def updateBuddyProfileAttributes(self, requestId, attributes):
"""
Parameters:
- requestId
- attributes
"""
pass
def updateBuddyProfileAttributesAsync(self, requestId, attributes):
"""
Parameters:
- requestId
- attributes
"""
pass
def updateBuddyProfileImage(self, requestId, image):
"""
Parameters:
- requestId
- image
"""
pass
def updateBuddyProfileImageAsync(self, requestId, image):
"""
Parameters:
- requestId
- image
"""
pass
def updateBuddySearchId(self, requestId, searchId):
"""
Parameters:
- requestId
- searchId
"""
pass
def updateBuddySettings(self, settings):
"""
Parameters:
- settings
"""
pass
def uploadBuddyContent(self, contentType, content):
"""
Parameters:
- contentType
- content
"""
pass
def findBuddyContactsByQuery(self, language, country, query, fromIndex, count, requestSource):
"""
Parameters:
- language
- country
- query
- fromIndex
- count
- requestSource
"""
pass
def getBuddyContacts(self, language, country, classification, fromIndex, count):
"""
Parameters:
- language
- country
- classification
- fromIndex
- count
"""
pass
def getBuddyDetail(self, buddyMid):
"""
Parameters:
- buddyMid
"""
pass
def getBuddyOnAir(self, buddyMid):
"""
Parameters:
- buddyMid
"""
pass
def getCountriesHavingBuddy(self):
pass
def getNewlyReleasedBuddyIds(self, country):
"""
Parameters:
- country
"""
pass
def getPopularBuddyBanner(self, language, country, applicationType, resourceSpecification):
"""
Parameters:
- language
- country
- applicationType
- resourceSpecification
"""
pass
def getPopularBuddyLists(self, language, country):
"""
Parameters:
- language
- country
"""
pass
def getPromotedBuddyContacts(self, language, country):
"""
Parameters:
- language
- country
"""
pass
def activeBuddySubscriberCount(self):
pass
def addOperationForChannel(self, opType, param1, param2, param3):
"""
Parameters:
- opType
- param1
- param2
- param3
"""
pass
def displayBuddySubscriberCount(self):
pass
def findContactByUseridWithoutAbuseBlockForChannel(self, userid):
"""
Parameters:
- userid
"""
pass
def getAllContactIdsForChannel(self):
pass
def getCompactContacts(self, lastModifiedTimestamp):
"""
Parameters:
- lastModifiedTimestamp
"""
pass
def getContactsForChannel(self, ids):
"""
Parameters:
- ids
"""
pass
def getDisplayName(self, mid):
"""
Parameters:
- mid
"""
pass
def getFavoriteMidsForChannel(self):
pass
def getFriendMids(self):
pass
def getGroupMemberMids(self, groupId):
"""
Parameters:
- groupId
"""
pass
def getGroupsForChannel(self, groupIds):
"""
Parameters:
- groupIds
"""
pass
def getIdentityCredential(self):
pass
def getJoinedGroupIdsForChannel(self):
pass
def getMetaProfile(self):
pass
def getMid(self):
pass
def getPrimaryClientForChannel(self):
pass
def getProfileForChannel(self):
pass
def getSimpleChannelContacts(self, ids):
"""
Parameters:
- ids
"""
pass
def getUserCountryForBilling(self, country, remoteIp):
"""
Parameters:
- country
- remoteIp
"""
pass
def getUserCreateTime(self):
pass
def getUserIdentities(self):
pass
def getUserLanguage(self):
pass
def getUserMidsWhoAddedMe(self):
pass
def isGroupMember(self, groupId):
"""
Parameters:
- groupId
"""
pass
def isInContact(self, mid):
"""
Parameters:
- mid
"""
pass
def registerChannelCP(self, cpId, registerPassword):
"""
Parameters:
- cpId
- registerPassword
"""
pass
def removeNotificationStatus(self, notificationStatus):
"""
Parameters:
- notificationStatus
"""
pass
def sendMessageForChannel(self, message):
"""
Parameters:
- message
"""
pass
def sendPinCodeOperation(self, verifier):
"""
Parameters:
- verifier
"""
pass
def updateProfileAttributeForChannel(self, profileAttribute, value):
"""
Parameters:
- profileAttribute
- value
"""
pass
def approveChannelAndIssueChannelToken(self, channelId):
"""
Parameters:
- channelId
"""
pass
def approveChannelAndIssueRequestToken(self, channelId, otpId):
"""
Parameters:
- channelId
- otpId
"""
pass
def fetchNotificationItems(self, localRev):
"""
Parameters:
- localRev
"""
pass
def getApprovedChannels(self, lastSynced, locale):
"""
Parameters:
- lastSynced
- locale
"""
pass
def getChannelInfo(self, channelId, locale):
"""
Parameters:
- channelId
- locale
"""
pass
def getChannelNotificationSetting(self, channelId, locale):
"""
Parameters:
- channelId
- locale
"""
pass
def getChannelNotificationSettings(self, locale):
"""
Parameters:
- locale
"""
pass
def getChannels(self, lastSynced, locale):
"""
Parameters:
- lastSynced
- locale
"""
pass
def getDomains(self, lastSynced):
"""
Parameters:
- lastSynced
"""
pass
def getFriendChannelMatrices(self, channelIds):
"""
Parameters:
- channelIds
"""
pass
def getNotificationBadgeCount(self, localRev):
"""
Parameters:
- localRev
"""
pass
def issueChannelToken(self, channelId):
"""
Parameters:
- channelId
"""
pass
def issueRequestToken(self, channelId, otpId):
"""
Parameters:
- channelId
- otpId
"""
pass
def issueRequestTokenWithAuthScheme(self, channelId, otpId, authScheme, returnUrl):
"""
Parameters:
- channelId
- otpId
- authScheme
- returnUrl
"""
pass
def reserveCoinUse(self, request, locale):
"""
Parameters:
- request
- locale
"""
pass
def revokeChannel(self, channelId):
"""
Parameters:
- channelId
"""
pass
def syncChannelData(self, lastSynced, locale):
"""
Parameters:
- lastSynced
- locale
"""
pass
def updateChannelNotificationSetting(self, setting):
"""
Parameters:
- setting
"""
pass
def fetchMessageOperations(self, localRevision, lastOpTimestamp, count):
"""
Parameters:
- localRevision
- lastOpTimestamp
- count
"""
pass
def getLastReadMessageIds(self, chatId):
"""
Parameters:
- chatId
"""
pass
def multiGetLastReadMessageIds(self, chatIds):
"""
Parameters:
- chatIds
"""
pass
def buyCoinProduct(self, paymentReservation):
"""
Parameters:
- paymentReservation
"""
pass
def buyFreeProduct(self, receiverMid, productId, messageTemplate, language, country, packageId):
"""
Parameters:
- receiverMid
- productId
- messageTemplate
- language
- country
- packageId
"""
pass
def buyMustbuyProduct(self, receiverMid, productId, messageTemplate, language, country, packageId, serialNumber):
"""
Parameters:
- receiverMid
- productId
- messageTemplate
- language
- country
- packageId
- serialNumber
"""
pass
def checkCanReceivePresent(self, recipientMid, packageId, language, country):
"""
Parameters:
- recipientMid
- packageId
- language
- country
"""
pass
def getActivePurchases(self, start, size, language, country):
"""
Parameters:
- start
- size
- language
- country
"""
pass
def getActivePurchaseVersions(self, start, size, language, country):
"""
Parameters:
- start
- size
- language
- country
"""
pass
def getCoinProducts(self, appStoreCode, country, language):
"""
Parameters:
- appStoreCode
- country
- language
"""
pass
def getCoinProductsByPgCode(self, appStoreCode, pgCode, country, language):
"""
Parameters:
- appStoreCode
- pgCode
- country
- language
"""
pass
def getCoinPurchaseHistory(self, request):
"""
Parameters:
- request
"""
pass
def getCoinUseAndRefundHistory(self, request):
"""
Parameters:
- request
"""
pass
def getDownloads(self, start, size, language, country):
"""
Parameters:
- start
- size
- language
- country
"""
pass
def getEventPackages(self, start, size, language, country):
"""
Parameters:
- start
- size
- language
- country
"""
pass
def getNewlyReleasedPackages(self, start, size, language, country):
"""
Parameters:
- start
- size
- language
- country
"""
pass
def getPopularPackages(self, start, size, language, country):
"""
Parameters:
- start
- size
- language
- country
"""
pass
def getPresentsReceived(self, start, size, language, country):
"""
Parameters:
- start
- size
- language
- country
"""
pass
def getPresentsSent(self, start, size, language, country):
"""
Parameters:
- start
- size
- language
- country
"""
pass
def getProduct(self, packageID, language, country):
"""
Parameters:
- packageID
- language
- country
"""
pass
def getProductList(self, productIdList, language, country):
"""
Parameters:
- productIdList
- language
- country
"""
pass
def getProductListWithCarrier(self, productIdList, language, country, carrierCode):
"""
Parameters:
- productIdList
- language
- country
- carrierCode
"""
pass
def getProductWithCarrier(self, packageID, language, country, carrierCode):
"""
Parameters:
- packageID
- language
- country
- carrierCode
"""
pass
def getPurchaseHistory(self, start, size, language, country):
"""
Parameters:
- start
- size
- language
- country
"""
pass
def getTotalBalance(self, appStoreCode):
"""
Parameters:
- appStoreCode
"""
pass
def notifyDownloaded(self, packageId, language):
"""
Parameters:
- packageId
- language
"""
pass
def reserveCoinPurchase(self, request):
"""
Parameters:
- request
"""
pass
def reservePayment(self, paymentReservation):
"""
Parameters:
- paymentReservation
"""
pass
def getSnsFriends(self, snsIdType, snsAccessToken, startIdx, limit):
"""
Parameters:
- snsIdType
- snsAccessToken
- startIdx
- limit
"""
pass
def getSnsMyProfile(self, snsIdType, snsAccessToken):
"""
Parameters:
- snsIdType
- snsAccessToken
"""
pass
def postSnsInvitationMessage(self, snsIdType, snsAccessToken, toSnsUserId):
"""
Parameters:
- snsIdType
- snsAccessToken
- toSnsUserId
"""
pass
def acceptGroupInvitation(self, reqSeq, groupId):
"""
Parameters:
- reqSeq
- groupId
"""
pass
def acceptGroupInvitationByTicket(self, reqSeq, groupId, ticketId):
"""
Parameters:
- reqSeq
- groupId
- ticketId
"""
pass
def acceptProximityMatches(self, sessionId, ids):
"""
Parameters:
- sessionId
- ids
"""
pass
def acquireCallRoute(self, to):
"""
Parameters:
- to
"""
pass
def acquireCallTicket(self, to):
"""
Parameters:
- to
"""
pass
def acquireEncryptedAccessToken(self, featureType):
"""
Parameters:
- featureType
"""
pass
def addSnsId(self, snsIdType, snsAccessToken):
"""
Parameters:
- snsIdType
- snsAccessToken
"""
pass
def blockContact(self, reqSeq, id):
"""
Parameters:
- reqSeq
- id
"""
pass
def blockRecommendation(self, reqSeq, id):
"""
Parameters:
- reqSeq
- id
"""
pass
def cancelGroupInvitation(self, reqSeq, groupId, contactIds):
"""
Parameters:
- reqSeq
- groupId
- contactIds
"""
pass
def changeVerificationMethod(self, sessionId, method):
"""
Parameters:
- sessionId
- method
"""
pass
def clearIdentityCredential(self):
pass
def clearMessageBox(self, channelId, messageBoxId):
"""
Parameters:
- channelId
- messageBoxId
"""
pass
def closeProximityMatch(self, sessionId):
"""
Parameters:
- sessionId
"""
pass
def commitSendMessage(self, seq, messageId, receiverMids):
"""
Parameters:
- seq
- messageId
- receiverMids
"""
pass
def commitSendMessages(self, seq, messageIds, receiverMids):
"""
Parameters:
- seq
- messageIds
- receiverMids
"""
pass
def commitUpdateProfile(self, seq, attrs, receiverMids):
"""
Parameters:
- seq
- attrs
- receiverMids
"""
pass
def confirmEmail(self, verifier, pinCode):
"""
Parameters:
- verifier
- pinCode
"""
pass
def createGroup(self, seq, name, contactIds):
"""
Parameters:
- seq
- name
- contactIds
"""
pass
def createQrcodeBase64Image(self, url, characterSet, imageSize, x, y, width, height):
"""
Parameters:
- url
- characterSet
- imageSize
- x
- y
- width
- height
"""
pass
def createRoom(self, reqSeq, contactIds):
"""
Parameters:
- reqSeq
- contactIds
"""
pass
def createSession(self):
pass
def fetchAnnouncements(self, lastFetchedIndex):
"""
Parameters:
- lastFetchedIndex
"""
pass
def fetchMessages(self, localTs, count):
"""
Parameters:
- localTs
- count
"""
pass
def fetchOperations(self, localRev, count):
"""
Parameters:
- localRev
- count
"""
pass
def fetchOps(self, localRev, count, globalRev, individualRev):
"""
Parameters:
- localRev
- count
- globalRev
- individualRev
"""
pass
def findAndAddContactsByEmail(self, reqSeq, emails):
"""
Parameters:
- reqSeq
- emails
"""
pass
def findAndAddContactsByMid(self, reqSeq, mid):
"""
Parameters:
- reqSeq
- mid
"""
pass
def findAndAddContactsByPhone(self, reqSeq, phones):
"""
Parameters:
- reqSeq
- phones
"""
pass
def findAndAddContactsByUserid(self, reqSeq, userid):
"""
Parameters:
- reqSeq
- userid
"""
pass
def findContactByUserid(self, userid):
"""
Parameters:
- userid
"""
pass
def findContactByUserTicket(self, ticketId):
"""
Parameters:
- ticketId
"""
pass
def findGroupByTicket(self, ticketId):
"""
Parameters:
- ticketId
"""
pass
def findContactsByEmail(self, emails):
"""
Parameters:
- emails
"""
pass
def findContactsByPhone(self, phones):
"""
Parameters:
- phones
"""
pass
def findSnsIdUserStatus(self, snsIdType, snsAccessToken, udidHash):
"""
Parameters:
- snsIdType
- snsAccessToken
- udidHash
"""
pass
def finishUpdateVerification(self, sessionId):
"""
Parameters:
- sessionId
"""
pass
def generateUserTicket(self, expirationTime, maxUseCount):
"""
Parameters:
- expirationTime
- maxUseCount
"""
pass
def getAcceptedProximityMatches(self, sessionId):
"""
Parameters:
- sessionId
"""
pass
def getActiveBuddySubscriberIds(self):
pass
def getAllContactIds(self):
pass
def getAuthQrcode(self, keepLoggedIn, systemName):
"""
Parameters:
- keepLoggedIn
- systemName
"""
pass
def getBlockedContactIds(self):
pass
def getBlockedContactIdsByRange(self, start, count):
"""
Parameters:
- start
- count
"""
pass
def getBlockedRecommendationIds(self):
pass
def getBuddyBlockerIds(self):
pass
def getBuddyLocation(self, mid, index):
"""
Parameters:
- mid
- index
"""
pass
def getCompactContactsModifiedSince(self, timestamp):
"""
Parameters:
- timestamp
"""
pass
def getCompactGroup(self, groupId):
"""
Parameters:
- groupId
"""
pass
def getCompactRoom(self, roomId):
"""
Parameters:
- roomId
"""
pass
def getContact(self, id):
"""
Parameters:
- id
"""
pass
def getContacts(self, ids):
"""
Parameters:
- ids
"""
pass
def getCountryWithRequestIp(self):
pass
def getFavoriteMids(self):
pass
def getGroup(self, groupId):
"""
Parameters:
- groupId
"""
pass
def getGroupIdsInvited(self):
pass
def getGroupIdsJoined(self):
pass
def getGroups(self, groupIds):
"""
Parameters:
- groupIds
"""
pass
def getHiddenContactMids(self):
pass
def getIdentityIdentifier(self):
pass
def getLastAnnouncementIndex(self):
pass
def getLastOpRevision(self):
pass
def getMessageBox(self, channelId, messageBoxId, lastMessagesCount):
"""
Parameters:
- channelId
- messageBoxId
- lastMessagesCount
"""
pass
def getMessageBoxCompactWrapUp(self, mid):
"""
Parameters:
- mid
"""
pass
def getMessageBoxCompactWrapUpList(self, start, messageBoxCount):
"""
Parameters:
- start
- messageBoxCount
"""
pass
def getMessageBoxList(self, channelId, lastMessagesCount):
"""
Parameters:
- channelId
- lastMessagesCount
"""
pass
def getMessageBoxListByStatus(self, channelId, lastMessagesCount, status):
"""
Parameters:
- channelId
- lastMessagesCount
- status
"""
pass
def getMessageBoxWrapUp(self, mid):
"""
Parameters:
- mid
"""
pass
def getMessageBoxWrapUpList(self, start, messageBoxCount):
"""
Parameters:
- start
- messageBoxCount
"""
pass
def getMessagesBySequenceNumber(self, channelId, messageBoxId, startSeq, endSeq):
"""
Parameters:
- channelId
- messageBoxId
- startSeq
- endSeq
"""
pass
def getNextMessages(self, messageBoxId, startSeq, messagesCount):
"""
Parameters:
- messageBoxId
- startSeq
- messagesCount
"""
pass
def getNotificationPolicy(self, carrier):
"""
Parameters:
- carrier
"""
pass
def getPreviousMessages(self, messageBoxId, endSeq, messagesCount):
"""
Parameters:
- messageBoxId
- endSeq
- messagesCount
"""
pass
def getProfile(self):
pass
def getProximityMatchCandidateList(self, sessionId):
"""
Parameters:
- sessionId
"""
pass
def getProximityMatchCandidates(self, sessionId):
"""
Parameters:
- sessionId
"""
pass
def getRecentMessages(self, messageBoxId, messagesCount):
"""
Parameters:
- messageBoxId
- messagesCount
"""
pass
def getRecommendationIds(self):
pass
def getRoom(self, roomId):
"""
Parameters:
- roomId
"""
pass
def getRSAKeyInfo(self, provider):
"""
Parameters:
- provider
"""
pass
def getServerTime(self):
pass
def getSessions(self):
pass
def getSettings(self):
pass
def getSettingsAttributes(self, attrBitset):
"""
Parameters:
- attrBitset
"""
pass
def getSystemConfiguration(self):
pass
def getUserTicket(self):
pass
def getWapInvitation(self, invitationHash):
"""
Parameters:
- invitationHash
"""
pass
def invalidateUserTicket(self):
pass
def inviteFriendsBySms(self, phoneNumberList):
"""
Parameters:
- phoneNumberList
"""
pass
def inviteIntoGroup(self, reqSeq, groupId, contactIds):
"""
Parameters:
- reqSeq
- groupId
- contactIds
"""
pass
def inviteIntoRoom(self, reqSeq, roomId, contactIds):
"""
Parameters:
- reqSeq
- roomId
- contactIds
"""
pass
def inviteViaEmail(self, reqSeq, email, name):
"""
Parameters:
- reqSeq
- email
- name
"""
pass
def isIdentityIdentifierAvailable(self, provider, identifier):
"""
Parameters:
- provider
- identifier
"""
pass
def isUseridAvailable(self, userid):
"""
Parameters:
- userid
"""
pass
def kickoutFromGroup(self, reqSeq, groupId, contactIds):
"""
Parameters:
- reqSeq
- groupId
- contactIds
"""
pass
def leaveGroup(self, reqSeq, groupId):
"""
Parameters:
- reqSeq
- groupId
"""
pass
def leaveRoom(self, reqSeq, roomId):
"""
Parameters:
- reqSeq
- roomId
"""
pass
def loginWithIdentityCredential(self, identityProvider, identifier, password, keepLoggedIn, accessLocation, systemName, certificate):
"""
Parameters:
- identityProvider
- identifier
- password
- keepLoggedIn
- accessLocation
- systemName
- certificate
"""
pass
def loginWithIdentityCredentialForCertificate(self, identityProvider, identifier, password, keepLoggedIn, accessLocation, systemName, certificate):
"""
Parameters:
- identityProvider
- identifier
- password
- keepLoggedIn
- accessLocation
- systemName
- certificate
"""
pass
def loginWithVerifier(self, verifier):
"""
Parameters:
- verifier
"""
pass
def loginWithVerifierForCerificate(self, verifier):
"""
Parameters:
- verifier
"""
pass
def loginWithVerifierForCertificate(self, verifier):
"""
Parameters:
- verifier
"""
pass
def logout(self):
pass
def logoutSession(self, tokenKey):
"""
Parameters:
- tokenKey
"""
pass
def noop(self):
pass
def notifiedRedirect(self, paramMap):
"""
Parameters:
- paramMap
"""
pass
def notifyBuddyOnAir(self, seq, receiverMids):
"""
Parameters:
- seq
- receiverMids
"""
pass
def notifyIndividualEvent(self, notificationStatus, receiverMids):
"""
Parameters:
- notificationStatus
- receiverMids
"""
pass
def notifyInstalled(self, udidHash, applicationTypeWithExtensions):
"""
Parameters:
- udidHash
- applicationTypeWithExtensions
"""
pass
def notifyRegistrationComplete(self, udidHash, applicationTypeWithExtensions):
"""
Parameters:
- udidHash
- applicationTypeWithExtensions
"""
pass
def notifySleep(self, lastRev, badge):
"""
Parameters:
- lastRev
- badge
"""
pass
def notifyUpdated(self, lastRev, deviceInfo):
"""
Parameters:
- lastRev
- deviceInfo
"""
pass
def openProximityMatch(self, location):
"""
Parameters:
- location
"""
pass
def registerBuddyUser(self, buddyId, registrarPassword):
"""
Parameters:
- buddyId
- registrarPassword
"""
pass
def registerBuddyUserid(self, seq, userid):
"""
Parameters:
- seq
- userid
"""
pass
def registerDevice(self, sessionId):
"""
Parameters:
- sessionId
"""
pass
def registerDeviceWithIdentityCredential(self, sessionId, provider, identifier, verifier):
"""
Parameters:
- sessionId
- provider
- identifier
- verifier
"""
pass
def registerDeviceWithoutPhoneNumber(self, region, udidHash, deviceInfo):
"""
Parameters:
- region
- udidHash
- deviceInfo
"""
pass
def registerDeviceWithoutPhoneNumberWithIdentityCredential(self, region, udidHash, deviceInfo, provider, identifier, verifier, mid):
"""
Parameters:
- region
- udidHash
- deviceInfo
- provider
- identifier
- verifier
- mid
"""
pass
def registerUserid(self, reqSeq, userid):
"""
Parameters:
- reqSeq
- userid
"""
pass
def registerWapDevice(self, invitationHash, guidHash, email, deviceInfo):
"""
Parameters:
- invitationHash
- guidHash
- email
- deviceInfo
"""
pass
def registerWithExistingSnsIdAndIdentityCredential(self, identityCredential, region, udidHash, deviceInfo):
"""
Parameters:
- identityCredential
- region
- udidHash
- deviceInfo
"""
pass
def registerWithSnsId(self, snsIdType, snsAccessToken, region, udidHash, deviceInfo, mid):
"""
Parameters:
- snsIdType
- snsAccessToken
- region
- udidHash
- deviceInfo
- mid
"""
pass
def registerWithSnsIdAndIdentityCredential(self, snsIdType, snsAccessToken, identityCredential, region, udidHash, deviceInfo):
"""
Parameters:
- snsIdType
- snsAccessToken
- identityCredential
- region
- udidHash
- deviceInfo
"""
pass
def reissueDeviceCredential(self):
pass
def reissueUserTicket(self, expirationTime, maxUseCount):
"""
Parameters:
- expirationTime
- maxUseCount
"""
pass
def reissueGroupTicket(self, groupId):
"""
Parameters:
- groupId
"""
pass
def rejectGroupInvitation(self, reqSeq, groupId):
"""
Parameters:
- reqSeq
- groupId
"""
pass
def releaseSession(self):
pass
def removeAllMessages(self, seq, lastMessageId):
"""
Parameters:
- seq
- lastMessageId
"""
pass
def removeBuddyLocation(self, mid, index):
"""
Parameters:
- mid
- index
"""
pass
def removeMessage(self, messageId):
"""
Parameters:
- messageId
"""
pass
def removeMessageFromMyHome(self, messageId):
"""
Parameters:
- messageId
"""
pass
def removeSnsId(self, snsIdType):
"""
Parameters:
- snsIdType
"""
pass
def report(self, syncOpRevision, category, report):
"""
Parameters:
- syncOpRevision
- category
- report
"""
pass
def reportContacts(self, syncOpRevision, category, contactReports, actionType):
"""
Parameters:
- syncOpRevision
- category
- contactReports
- actionType
"""
pass
def reportGroups(self, syncOpRevision, groups):
"""
Parameters:
- syncOpRevision
- groups
"""
pass
def reportProfile(self, syncOpRevision, profile):
"""
Parameters:
- syncOpRevision
- profile
"""
pass
def reportRooms(self, syncOpRevision, rooms):
"""
Parameters:
- syncOpRevision
- rooms
"""
pass
def reportSettings(self, syncOpRevision, settings):
"""
Parameters:
- syncOpRevision
- settings
"""
pass
def reportSpammer(self, spammerMid, spammerReasons, spamMessageIds):
"""
Parameters:
- spammerMid
- spammerReasons
- spamMessageIds
"""
pass
def requestAccountPasswordReset(self, provider, identifier, locale):
"""
Parameters:
- provider
- identifier
- locale
"""
pass
def requestEmailConfirmation(self, emailConfirmation):
"""
Parameters:
- emailConfirmation
"""
pass
def requestIdentityUnbind(self, provider, identifier):
"""
Parameters:
- provider
- identifier
"""
pass
def resendEmailConfirmation(self, verifier):
"""
Parameters:
- verifier
"""
pass
def resendPinCode(self, sessionId):
"""
Parameters:
- sessionId
"""
pass
def resendPinCodeBySMS(self, sessionId):
"""
Parameters:
- sessionId
"""
pass
def sendChatChecked(self, seq, consumer, lastMessageId):
"""
Parameters:
- seq
- consumer
- lastMessageId
"""
pass
def sendChatRemoved(self, seq, consumer, lastMessageId):
"""
Parameters:
- seq
- consumer
- lastMessageId
"""
pass
def sendContentPreviewUpdated(self, esq, messageId, receiverMids):
"""
Parameters:
- esq
- messageId
- receiverMids
"""
pass
def sendContentReceipt(self, seq, consumer, messageId):
"""
Parameters:
- seq
- consumer
- messageId
"""
pass
def sendDummyPush(self):
pass
def sendEvent(self, seq, message):
"""
Parameters:
- seq
- message
"""
pass
def sendMessage(self, seq, message):
"""
Parameters:
- seq
- message
"""
pass
def sendMessageIgnored(self, seq, consumer, messageIds):
"""
Parameters:
- seq
- consumer
- messageIds
"""
pass
def sendMessageReceipt(self, seq, consumer, messageIds):
"""
Parameters:
- seq
- consumer
- messageIds
"""
pass
def sendMessageToMyHome(self, seq, message):
"""
Parameters:
- seq
- message
"""
pass
def setBuddyLocation(self, mid, index, location):
"""
Parameters:
- mid
- index
- location
"""
pass
def setIdentityCredential(self, provider, identifier, verifier):
"""
Parameters:
- provider
- identifier
- verifier
"""
pass
def setNotificationsEnabled(self, reqSeq, type, target, enablement):
"""
Parameters:
- reqSeq
- type
- target
- enablement
"""
pass
def startUpdateVerification(self, region, carrier, phone, udidHash, deviceInfo, networkCode, locale):
"""
Parameters:
- region
- carrier
- phone
- udidHash
- deviceInfo
- networkCode
- locale
"""
pass
def startVerification(self, region, carrier, phone, udidHash, deviceInfo, networkCode, mid, locale):
"""
Parameters:
- region
- carrier
- phone
- udidHash
- deviceInfo
- networkCode
- mid
- locale
"""
pass
def storeUpdateProfileAttribute(self, seq, profileAttribute, value):
"""
Parameters:
- seq
- profileAttribute
- value
"""
pass
def syncContactBySnsIds(self, reqSeq, modifications):
"""
Parameters:
- reqSeq
- modifications
"""
pass
def syncContacts(self, reqSeq, localContacts):
"""
Parameters:
- reqSeq
- localContacts
"""
pass
def trySendMessage(self, seq, message):
"""
Parameters:
- seq
- message
"""
pass
def unblockContact(self, reqSeq, id):
"""
Parameters:
- reqSeq
- id
"""
pass
def unblockRecommendation(self, reqSeq, id):
"""
Parameters:
- reqSeq
- id
"""
pass
def unregisterUserAndDevice(self):
pass
def updateApnsDeviceToken(self, apnsDeviceToken):
"""
Parameters:
- apnsDeviceToken
"""
pass
def updateBuddySetting(self, key, value):
"""
Parameters:
- key
- value
"""
pass
def updateC2DMRegistrationId(self, registrationId):
"""
Parameters:
- registrationId
"""
pass
def updateContactSetting(self, reqSeq, mid, flag, value):
"""
Parameters:
- reqSeq
- mid
- flag
- value
"""
pass
def updateCustomModeSettings(self, customMode, paramMap):
"""
Parameters:
- customMode
- paramMap
"""
pass
def updateDeviceInfo(self, deviceUid, deviceInfo):
"""
Parameters:
- deviceUid
- deviceInfo
"""
pass
def updateGroup(self, reqSeq, group):
"""
Parameters:
- reqSeq
- group
"""
pass
def updateNotificationToken(self, type, token):
"""
Parameters:
- type
- token
"""
pass
def updateNotificationTokenWithBytes(self, type, token):
"""
Parameters:
- type
- token
"""
pass
def updateProfile(self, reqSeq, profile):
"""
Parameters:
- reqSeq
- profile
"""
pass
def updateProfileAttribute(self, reqSeq, attr, value):
"""
Parameters:
- reqSeq
- attr
- value
"""
pass
def updateRegion(self, region):
"""
Parameters:
- region
"""
pass
def updateSettings(self, reqSeq, settings):
"""
Parameters:
- reqSeq
- settings
"""
pass
def updateSettings2(self, reqSeq, settings):
"""
Parameters:
- reqSeq
- settings
"""
pass
def updateSettingsAttribute(self, reqSeq, attr, value):
"""
Parameters:
- reqSeq
- attr
- value
"""
pass
def updateSettingsAttributes(self, reqSeq, attrBitset, settings):
"""
Parameters:
- reqSeq
- attrBitset
- settings
"""
pass
def verifyIdentityCredential(self, identityProvider, identifier, password):
"""
Parameters:
- identityProvider
- identifier
- password
"""
pass
def verifyIdentityCredentialWithResult(self, identityCredential):
"""
Parameters:
- identityCredential
"""
pass
def verifyPhone(self, sessionId, pinCode, udidHash):
"""
Parameters:
- sessionId
- pinCode
- udidHash
"""
pass
def verifyQrcode(self, verifier, pinCode):
"""
Parameters:
- verifier
- pinCode
"""
pass
def notify(self, event):
"""
Parameters:
- event
"""
pass
class Client(Iface):
def __init__(self, iprot, oprot=None):
self._iprot = self._oprot = iprot
if oprot is not None:
self._oprot = oprot
self._seqid = 0
def getRSAKey(self):
self.send_getRSAKey()
return self.recv_getRSAKey()
def send_getRSAKey(self):
self._oprot.writeMessageBegin('getRSAKey', TMessageType.CALL, self._seqid)
args = getRSAKey_args()
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getRSAKey(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getRSAKey_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getRSAKey failed: unknown result")
def notifyEmailConfirmationResult(self, parameterMap):
"""
Parameters:
- parameterMap
"""
self.send_notifyEmailConfirmationResult(parameterMap)
self.recv_notifyEmailConfirmationResult()
def send_notifyEmailConfirmationResult(self, parameterMap):
self._oprot.writeMessageBegin('notifyEmailConfirmationResult', TMessageType.CALL, self._seqid)
args = notifyEmailConfirmationResult_args()
args.parameterMap = parameterMap
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_notifyEmailConfirmationResult(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = notifyEmailConfirmationResult_result()
result.read(iprot)
iprot.readMessageEnd()
if result.e is not None:
raise result.e
return
def registerVirtualAccount(self, locale, encryptedVirtualUserId, encryptedPassword):
"""
Parameters:
- locale
- encryptedVirtualUserId
- encryptedPassword
"""
self.send_registerVirtualAccount(locale, encryptedVirtualUserId, encryptedPassword)
return self.recv_registerVirtualAccount()
def send_registerVirtualAccount(self, locale, encryptedVirtualUserId, encryptedPassword):
self._oprot.writeMessageBegin('registerVirtualAccount', TMessageType.CALL, self._seqid)
args = registerVirtualAccount_args()
args.locale = locale
args.encryptedVirtualUserId = encryptedVirtualUserId
args.encryptedPassword = encryptedPassword
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_registerVirtualAccount(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = registerVirtualAccount_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "registerVirtualAccount failed: unknown result")
def requestVirtualAccountPasswordChange(self, virtualMid, encryptedVirtualUserId, encryptedOldPassword, encryptedNewPassword):
"""
Parameters:
- virtualMid
- encryptedVirtualUserId
- encryptedOldPassword
- encryptedNewPassword
"""
self.send_requestVirtualAccountPasswordChange(virtualMid, encryptedVirtualUserId, encryptedOldPassword, encryptedNewPassword)
self.recv_requestVirtualAccountPasswordChange()
def send_requestVirtualAccountPasswordChange(self, virtualMid, encryptedVirtualUserId, encryptedOldPassword, encryptedNewPassword):
self._oprot.writeMessageBegin('requestVirtualAccountPasswordChange', TMessageType.CALL, self._seqid)
args = requestVirtualAccountPasswordChange_args()
args.virtualMid = virtualMid
args.encryptedVirtualUserId = encryptedVirtualUserId
args.encryptedOldPassword = encryptedOldPassword
args.encryptedNewPassword = encryptedNewPassword
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_requestVirtualAccountPasswordChange(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = requestVirtualAccountPasswordChange_result()
result.read(iprot)
iprot.readMessageEnd()
if result.e is not None:
raise result.e
return
def requestVirtualAccountPasswordSet(self, virtualMid, encryptedVirtualUserId, encryptedNewPassword):
"""
Parameters:
- virtualMid
- encryptedVirtualUserId
- encryptedNewPassword
"""
self.send_requestVirtualAccountPasswordSet(virtualMid, encryptedVirtualUserId, encryptedNewPassword)
self.recv_requestVirtualAccountPasswordSet()
def send_requestVirtualAccountPasswordSet(self, virtualMid, encryptedVirtualUserId, encryptedNewPassword):
self._oprot.writeMessageBegin('requestVirtualAccountPasswordSet', TMessageType.CALL, self._seqid)
args = requestVirtualAccountPasswordSet_args()
args.virtualMid = virtualMid
args.encryptedVirtualUserId = encryptedVirtualUserId
args.encryptedNewPassword = encryptedNewPassword
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_requestVirtualAccountPasswordSet(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = requestVirtualAccountPasswordSet_result()
result.read(iprot)
iprot.readMessageEnd()
if result.e is not None:
raise result.e
return
def unregisterVirtualAccount(self, virtualMid):
"""
Parameters:
- virtualMid
"""
self.send_unregisterVirtualAccount(virtualMid)
self.recv_unregisterVirtualAccount()
def send_unregisterVirtualAccount(self, virtualMid):
self._oprot.writeMessageBegin('unregisterVirtualAccount', TMessageType.CALL, self._seqid)
args = unregisterVirtualAccount_args()
args.virtualMid = virtualMid
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_unregisterVirtualAccount(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = unregisterVirtualAccount_result()
result.read(iprot)
iprot.readMessageEnd()
if result.e is not None:
raise result.e
return
def checkUserAge(self, carrier, sessionId, verifier, standardAge):
"""
Parameters:
- carrier
- sessionId
- verifier
- standardAge
"""
self.send_checkUserAge(carrier, sessionId, verifier, standardAge)
return self.recv_checkUserAge()
def send_checkUserAge(self, carrier, sessionId, verifier, standardAge):
self._oprot.writeMessageBegin('checkUserAge', TMessageType.CALL, self._seqid)
args = checkUserAge_args()
args.carrier = carrier
args.sessionId = sessionId
args.verifier = verifier
args.standardAge = standardAge
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_checkUserAge(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = checkUserAge_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "checkUserAge failed: unknown result")
def checkUserAgeWithDocomo(self, openIdRedirectUrl, standardAge, verifier):
"""
Parameters:
- openIdRedirectUrl
- standardAge
- verifier
"""
self.send_checkUserAgeWithDocomo(openIdRedirectUrl, standardAge, verifier)
return self.recv_checkUserAgeWithDocomo()
def send_checkUserAgeWithDocomo(self, openIdRedirectUrl, standardAge, verifier):
self._oprot.writeMessageBegin('checkUserAgeWithDocomo', TMessageType.CALL, self._seqid)
args = checkUserAgeWithDocomo_args()
args.openIdRedirectUrl = openIdRedirectUrl
args.standardAge = standardAge
args.verifier = verifier
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_checkUserAgeWithDocomo(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = checkUserAgeWithDocomo_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "checkUserAgeWithDocomo failed: unknown result")
def retrieveOpenIdAuthUrlWithDocomo(self):
self.send_retrieveOpenIdAuthUrlWithDocomo()
return self.recv_retrieveOpenIdAuthUrlWithDocomo()
def send_retrieveOpenIdAuthUrlWithDocomo(self):
self._oprot.writeMessageBegin('retrieveOpenIdAuthUrlWithDocomo', TMessageType.CALL, self._seqid)
args = retrieveOpenIdAuthUrlWithDocomo_args()
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_retrieveOpenIdAuthUrlWithDocomo(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = retrieveOpenIdAuthUrlWithDocomo_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "retrieveOpenIdAuthUrlWithDocomo failed: unknown result")
def retrieveRequestToken(self, carrier):
"""
Parameters:
- carrier
"""
self.send_retrieveRequestToken(carrier)
return self.recv_retrieveRequestToken()
def send_retrieveRequestToken(self, carrier):
self._oprot.writeMessageBegin('retrieveRequestToken', TMessageType.CALL, self._seqid)
args = retrieveRequestToken_args()
args.carrier = carrier
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_retrieveRequestToken(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = retrieveRequestToken_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "retrieveRequestToken failed: unknown result")
def addBuddyMember(self, requestId, userMid):
"""
Parameters:
- requestId
- userMid
"""
self.send_addBuddyMember(requestId, userMid)
self.recv_addBuddyMember()
def send_addBuddyMember(self, requestId, userMid):
self._oprot.writeMessageBegin('addBuddyMember', TMessageType.CALL, self._seqid)
args = addBuddyMember_args()
args.requestId = requestId
args.userMid = userMid
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_addBuddyMember(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = addBuddyMember_result()
result.read(iprot)
iprot.readMessageEnd()
if result.e is not None:
raise result.e
return
def addBuddyMembers(self, requestId, userMids):
"""
Parameters:
- requestId
- userMids
"""
self.send_addBuddyMembers(requestId, userMids)
self.recv_addBuddyMembers()
def send_addBuddyMembers(self, requestId, userMids):
self._oprot.writeMessageBegin('addBuddyMembers', TMessageType.CALL, self._seqid)
args = addBuddyMembers_args()
args.requestId = requestId
args.userMids = userMids
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_addBuddyMembers(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = addBuddyMembers_result()
result.read(iprot)
iprot.readMessageEnd()
if result.e is not None:
raise result.e
return
def blockBuddyMember(self, requestId, mid):
"""
Parameters:
- requestId
- mid
"""
self.send_blockBuddyMember(requestId, mid)
self.recv_blockBuddyMember()
def send_blockBuddyMember(self, requestId, mid):
self._oprot.writeMessageBegin('blockBuddyMember', TMessageType.CALL, self._seqid)
args = blockBuddyMember_args()
args.requestId = requestId
args.mid = mid
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_blockBuddyMember(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = blockBuddyMember_result()
result.read(iprot)
iprot.readMessageEnd()
if result.e is not None:
raise result.e
return
def commitSendMessagesToAll(self, requestIdList):
"""
Parameters:
- requestIdList
"""
self.send_commitSendMessagesToAll(requestIdList)
return self.recv_commitSendMessagesToAll()
def send_commitSendMessagesToAll(self, requestIdList):
self._oprot.writeMessageBegin('commitSendMessagesToAll', TMessageType.CALL, self._seqid)
args = commitSendMessagesToAll_args()
args.requestIdList = requestIdList
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_commitSendMessagesToAll(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = commitSendMessagesToAll_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "commitSendMessagesToAll failed: unknown result")
def commitSendMessagesTomids(self, requestIdList, mids):
"""
Parameters:
- requestIdList
- mids
"""
self.send_commitSendMessagesTomids(requestIdList, mids)
return self.recv_commitSendMessagesTomids()
def send_commitSendMessagesTomids(self, requestIdList, mids):
self._oprot.writeMessageBegin('commitSendMessagesTomids', TMessageType.CALL, self._seqid)
args = commitSendMessagesTomids_args()
args.requestIdList = requestIdList
args.mids = mids
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_commitSendMessagesTomids(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = commitSendMessagesTomids_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "commitSendMessagesTomids failed: unknown result")
def containsBuddyMember(self, requestId, userMid):
"""
Parameters:
- requestId
- userMid
"""
self.send_containsBuddyMember(requestId, userMid)
return self.recv_containsBuddyMember()
def send_containsBuddyMember(self, requestId, userMid):
self._oprot.writeMessageBegin('containsBuddyMember', TMessageType.CALL, self._seqid)
args = containsBuddyMember_args()
args.requestId = requestId
args.userMid = userMid
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_containsBuddyMember(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = containsBuddyMember_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "containsBuddyMember failed: unknown result")
def downloadMessageContent(self, requestId, messageId):
"""
Parameters:
- requestId
- messageId
"""
self.send_downloadMessageContent(requestId, messageId)
return self.recv_downloadMessageContent()
def send_downloadMessageContent(self, requestId, messageId):
self._oprot.writeMessageBegin('downloadMessageContent', TMessageType.CALL, self._seqid)
args = downloadMessageContent_args()
args.requestId = requestId
args.messageId = messageId
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_downloadMessageContent(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = downloadMessageContent_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "downloadMessageContent failed: unknown result")
def downloadMessageContentPreview(self, requestId, messageId):
"""
Parameters:
- requestId
- messageId
"""
self.send_downloadMessageContentPreview(requestId, messageId)
return self.recv_downloadMessageContentPreview()
def send_downloadMessageContentPreview(self, requestId, messageId):
self._oprot.writeMessageBegin('downloadMessageContentPreview', TMessageType.CALL, self._seqid)
args = downloadMessageContentPreview_args()
args.requestId = requestId
args.messageId = messageId
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_downloadMessageContentPreview(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = downloadMessageContentPreview_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "downloadMessageContentPreview failed: unknown result")
def downloadProfileImage(self, requestId):
"""
Parameters:
- requestId
"""
self.send_downloadProfileImage(requestId)
return self.recv_downloadProfileImage()
def send_downloadProfileImage(self, requestId):
self._oprot.writeMessageBegin('downloadProfileImage', TMessageType.CALL, self._seqid)
args = downloadProfileImage_args()
args.requestId = requestId
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_downloadProfileImage(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = downloadProfileImage_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "downloadProfileImage failed: unknown result")
def downloadProfileImagePreview(self, requestId):
"""
Parameters:
- requestId
"""
self.send_downloadProfileImagePreview(requestId)
return self.recv_downloadProfileImagePreview()
def send_downloadProfileImagePreview(self, requestId):
self._oprot.writeMessageBegin('downloadProfileImagePreview', TMessageType.CALL, self._seqid)
args = downloadProfileImagePreview_args()
args.requestId = requestId
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_downloadProfileImagePreview(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = downloadProfileImagePreview_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "downloadProfileImagePreview failed: unknown result")
def getActiveMemberCountByBuddyMid(self, buddyMid):
"""
Parameters:
- buddyMid
"""
self.send_getActiveMemberCountByBuddyMid(buddyMid)
return self.recv_getActiveMemberCountByBuddyMid()
def send_getActiveMemberCountByBuddyMid(self, buddyMid):
self._oprot.writeMessageBegin('getActiveMemberCountByBuddyMid', TMessageType.CALL, self._seqid)
args = getActiveMemberCountByBuddyMid_args()
args.buddyMid = buddyMid
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getActiveMemberCountByBuddyMid(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getActiveMemberCountByBuddyMid_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getActiveMemberCountByBuddyMid failed: unknown result")
def getActiveMemberMidsByBuddyMid(self, buddyMid):
"""
Parameters:
- buddyMid
"""
self.send_getActiveMemberMidsByBuddyMid(buddyMid)
return self.recv_getActiveMemberMidsByBuddyMid()
def send_getActiveMemberMidsByBuddyMid(self, buddyMid):
self._oprot.writeMessageBegin('getActiveMemberMidsByBuddyMid', TMessageType.CALL, self._seqid)
args = getActiveMemberMidsByBuddyMid_args()
args.buddyMid = buddyMid
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getActiveMemberMidsByBuddyMid(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getActiveMemberMidsByBuddyMid_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getActiveMemberMidsByBuddyMid failed: unknown result")
def getAllBuddyMembers(self):
self.send_getAllBuddyMembers()
return self.recv_getAllBuddyMembers()
def send_getAllBuddyMembers(self):
self._oprot.writeMessageBegin('getAllBuddyMembers', TMessageType.CALL, self._seqid)
args = getAllBuddyMembers_args()
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getAllBuddyMembers(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getAllBuddyMembers_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getAllBuddyMembers failed: unknown result")
def getBlockedBuddyMembers(self):
self.send_getBlockedBuddyMembers()
return self.recv_getBlockedBuddyMembers()
def send_getBlockedBuddyMembers(self):
self._oprot.writeMessageBegin('getBlockedBuddyMembers', TMessageType.CALL, self._seqid)
args = getBlockedBuddyMembers_args()
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getBlockedBuddyMembers(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getBlockedBuddyMembers_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getBlockedBuddyMembers failed: unknown result")
def getBlockerCountByBuddyMid(self, buddyMid):
"""
Parameters:
- buddyMid
"""
self.send_getBlockerCountByBuddyMid(buddyMid)
return self.recv_getBlockerCountByBuddyMid()
def send_getBlockerCountByBuddyMid(self, buddyMid):
self._oprot.writeMessageBegin('getBlockerCountByBuddyMid', TMessageType.CALL, self._seqid)
args = getBlockerCountByBuddyMid_args()
args.buddyMid = buddyMid
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getBlockerCountByBuddyMid(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getBlockerCountByBuddyMid_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getBlockerCountByBuddyMid failed: unknown result")
def getBuddyDetailByMid(self, buddyMid):
"""
Parameters:
- buddyMid
"""
self.send_getBuddyDetailByMid(buddyMid)
return self.recv_getBuddyDetailByMid()
def send_getBuddyDetailByMid(self, buddyMid):
self._oprot.writeMessageBegin('getBuddyDetailByMid', TMessageType.CALL, self._seqid)
args = getBuddyDetailByMid_args()
args.buddyMid = buddyMid
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getBuddyDetailByMid(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getBuddyDetailByMid_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getBuddyDetailByMid failed: unknown result")
def getBuddyProfile(self):
self.send_getBuddyProfile()
return self.recv_getBuddyProfile()
def send_getBuddyProfile(self):
self._oprot.writeMessageBegin('getBuddyProfile', TMessageType.CALL, self._seqid)
args = getBuddyProfile_args()
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getBuddyProfile(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getBuddyProfile_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getBuddyProfile failed: unknown result")
def getContactTicket(self):
self.send_getContactTicket()
return self.recv_getContactTicket()
def send_getContactTicket(self):
self._oprot.writeMessageBegin('getContactTicket', TMessageType.CALL, self._seqid)
args = getContactTicket_args()
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getContactTicket(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getContactTicket_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getContactTicket failed: unknown result")
def getMemberCountByBuddyMid(self, buddyMid):
"""
Parameters:
- buddyMid
"""
self.send_getMemberCountByBuddyMid(buddyMid)
return self.recv_getMemberCountByBuddyMid()
def send_getMemberCountByBuddyMid(self, buddyMid):
self._oprot.writeMessageBegin('getMemberCountByBuddyMid', TMessageType.CALL, self._seqid)
args = getMemberCountByBuddyMid_args()
args.buddyMid = buddyMid
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getMemberCountByBuddyMid(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getMemberCountByBuddyMid_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getMemberCountByBuddyMid failed: unknown result")
def getSendBuddyMessageResult(self, sendBuddyMessageRequestId):
"""
Parameters:
- sendBuddyMessageRequestId
"""
self.send_getSendBuddyMessageResult(sendBuddyMessageRequestId)
return self.recv_getSendBuddyMessageResult()
def send_getSendBuddyMessageResult(self, sendBuddyMessageRequestId):
self._oprot.writeMessageBegin('getSendBuddyMessageResult', TMessageType.CALL, self._seqid)
args = getSendBuddyMessageResult_args()
args.sendBuddyMessageRequestId = sendBuddyMessageRequestId
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getSendBuddyMessageResult(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getSendBuddyMessageResult_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getSendBuddyMessageResult failed: unknown result")
def getSetBuddyOnAirResult(self, setBuddyOnAirRequestId):
"""
Parameters:
- setBuddyOnAirRequestId
"""
self.send_getSetBuddyOnAirResult(setBuddyOnAirRequestId)
return self.recv_getSetBuddyOnAirResult()
def send_getSetBuddyOnAirResult(self, setBuddyOnAirRequestId):
self._oprot.writeMessageBegin('getSetBuddyOnAirResult', TMessageType.CALL, self._seqid)
args = getSetBuddyOnAirResult_args()
args.setBuddyOnAirRequestId = setBuddyOnAirRequestId
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getSetBuddyOnAirResult(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getSetBuddyOnAirResult_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getSetBuddyOnAirResult failed: unknown result")
def getUpdateBuddyProfileResult(self, updateBuddyProfileRequestId):
"""
Parameters:
- updateBuddyProfileRequestId
"""
self.send_getUpdateBuddyProfileResult(updateBuddyProfileRequestId)
return self.recv_getUpdateBuddyProfileResult()
def send_getUpdateBuddyProfileResult(self, updateBuddyProfileRequestId):
self._oprot.writeMessageBegin('getUpdateBuddyProfileResult', TMessageType.CALL, self._seqid)
args = getUpdateBuddyProfileResult_args()
args.updateBuddyProfileRequestId = updateBuddyProfileRequestId
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getUpdateBuddyProfileResult(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getUpdateBuddyProfileResult_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getUpdateBuddyProfileResult failed: unknown result")
def isBuddyOnAirByMid(self, buddyMid):
"""
Parameters:
- buddyMid
"""
self.send_isBuddyOnAirByMid(buddyMid)
return self.recv_isBuddyOnAirByMid()
def send_isBuddyOnAirByMid(self, buddyMid):
self._oprot.writeMessageBegin('isBuddyOnAirByMid', TMessageType.CALL, self._seqid)
args = isBuddyOnAirByMid_args()
args.buddyMid = buddyMid
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_isBuddyOnAirByMid(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = isBuddyOnAirByMid_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "isBuddyOnAirByMid failed: unknown result")
def linkAndSendBuddyContentMessageToAllAsync(self, requestId, msg, sourceContentId):
"""
Parameters:
- requestId
- msg
- sourceContentId
"""
self.send_linkAndSendBuddyContentMessageToAllAsync(requestId, msg, sourceContentId)
return self.recv_linkAndSendBuddyContentMessageToAllAsync()
def send_linkAndSendBuddyContentMessageToAllAsync(self, requestId, msg, sourceContentId):
self._oprot.writeMessageBegin('linkAndSendBuddyContentMessageToAllAsync', TMessageType.CALL, self._seqid)
args = linkAndSendBuddyContentMessageToAllAsync_args()
args.requestId = requestId
args.msg = msg
args.sourceContentId = sourceContentId
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_linkAndSendBuddyContentMessageToAllAsync(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = linkAndSendBuddyContentMessageToAllAsync_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "linkAndSendBuddyContentMessageToAllAsync failed: unknown result")
def linkAndSendBuddyContentMessageTomids(self, requestId, msg, sourceContentId, mids):
"""
Parameters:
- requestId
- msg
- sourceContentId
- mids
"""
self.send_linkAndSendBuddyContentMessageTomids(requestId, msg, sourceContentId, mids)
return self.recv_linkAndSendBuddyContentMessageTomids()
def send_linkAndSendBuddyContentMessageTomids(self, requestId, msg, sourceContentId, mids):
self._oprot.writeMessageBegin('linkAndSendBuddyContentMessageTomids', TMessageType.CALL, self._seqid)
args = linkAndSendBuddyContentMessageTomids_args()
args.requestId = requestId
args.msg = msg
args.sourceContentId = sourceContentId
args.mids = mids
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_linkAndSendBuddyContentMessageTomids(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = linkAndSendBuddyContentMessageTomids_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "linkAndSendBuddyContentMessageTomids failed: unknown result")
def notifyBuddyBlocked(self, buddyMid, blockerMid):
"""
Parameters:
- buddyMid
- blockerMid
"""
self.send_notifyBuddyBlocked(buddyMid, blockerMid)
self.recv_notifyBuddyBlocked()
def send_notifyBuddyBlocked(self, buddyMid, blockerMid):
self._oprot.writeMessageBegin('notifyBuddyBlocked', TMessageType.CALL, self._seqid)
args = notifyBuddyBlocked_args()
args.buddyMid = buddyMid
args.blockerMid = blockerMid
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_notifyBuddyBlocked(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = notifyBuddyBlocked_result()
result.read(iprot)
iprot.readMessageEnd()
if result.e is not None:
raise result.e
return
def notifyBuddyUnblocked(self, buddyMid, blockerMid):
"""
Parameters:
- buddyMid
- blockerMid
"""
self.send_notifyBuddyUnblocked(buddyMid, blockerMid)
self.recv_notifyBuddyUnblocked()
def send_notifyBuddyUnblocked(self, buddyMid, blockerMid):
self._oprot.writeMessageBegin('notifyBuddyUnblocked', TMessageType.CALL, self._seqid)
args = notifyBuddyUnblocked_args()
args.buddyMid = buddyMid
args.blockerMid = blockerMid
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_notifyBuddyUnblocked(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = notifyBuddyUnblocked_result()
result.read(iprot)
iprot.readMessageEnd()
if result.e is not None:
raise result.e
return
def registerBuddy(self, buddyId, searchId, displayName, statusMeessage, picture, settings):
"""
Parameters:
- buddyId
- searchId
- displayName
- statusMeessage
- picture
- settings
"""
self.send_registerBuddy(buddyId, searchId, displayName, statusMeessage, picture, settings)
return self.recv_registerBuddy()
def send_registerBuddy(self, buddyId, searchId, displayName, statusMeessage, picture, settings):
self._oprot.writeMessageBegin('registerBuddy', TMessageType.CALL, self._seqid)
args = registerBuddy_args()
args.buddyId = buddyId
args.searchId = searchId
args.displayName = displayName
args.statusMeessage = statusMeessage
args.picture = picture
args.settings = settings
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_registerBuddy(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = registerBuddy_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "registerBuddy failed: unknown result")
def registerBuddyAdmin(self, buddyId, searchId, displayName, statusMessage, picture):
"""
Parameters:
- buddyId
- searchId
- displayName
- statusMessage
- picture
"""
self.send_registerBuddyAdmin(buddyId, searchId, displayName, statusMessage, picture)
return self.recv_registerBuddyAdmin()
def send_registerBuddyAdmin(self, buddyId, searchId, displayName, statusMessage, picture):
self._oprot.writeMessageBegin('registerBuddyAdmin', TMessageType.CALL, self._seqid)
args = registerBuddyAdmin_args()
args.buddyId = buddyId
args.searchId = searchId
args.displayName = displayName
args.statusMessage = statusMessage
args.picture = picture
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_registerBuddyAdmin(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = registerBuddyAdmin_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "registerBuddyAdmin failed: unknown result")
def reissueContactTicket(self, expirationTime, maxUseCount):
"""
Parameters:
- expirationTime
- maxUseCount
"""
self.send_reissueContactTicket(expirationTime, maxUseCount)
return self.recv_reissueContactTicket()
def send_reissueContactTicket(self, expirationTime, maxUseCount):
self._oprot.writeMessageBegin('reissueContactTicket', TMessageType.CALL, self._seqid)
args = reissueContactTicket_args()
args.expirationTime = expirationTime
args.maxUseCount = maxUseCount
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_reissueContactTicket(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = reissueContactTicket_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "reissueContactTicket failed: unknown result")
def removeBuddyMember(self, requestId, userMid):
"""
Parameters:
- requestId
- userMid
"""
self.send_removeBuddyMember(requestId, userMid)
self.recv_removeBuddyMember()
def send_removeBuddyMember(self, requestId, userMid):
self._oprot.writeMessageBegin('removeBuddyMember', TMessageType.CALL, self._seqid)
args = removeBuddyMember_args()
args.requestId = requestId
args.userMid = userMid
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_removeBuddyMember(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = removeBuddyMember_result()
result.read(iprot)
iprot.readMessageEnd()
if result.e is not None:
raise result.e
return
def removeBuddyMembers(self, requestId, userMids):
"""
Parameters:
- requestId
- userMids
"""
self.send_removeBuddyMembers(requestId, userMids)
self.recv_removeBuddyMembers()
def send_removeBuddyMembers(self, requestId, userMids):
self._oprot.writeMessageBegin('removeBuddyMembers', TMessageType.CALL, self._seqid)
args = removeBuddyMembers_args()
args.requestId = requestId
args.userMids = userMids
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_removeBuddyMembers(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = removeBuddyMembers_result()
result.read(iprot)
iprot.readMessageEnd()
if result.e is not None:
raise result.e
return
def sendBuddyContentMessageToAll(self, requestId, msg, content):
"""
Parameters:
- requestId
- msg
- content
"""
self.send_sendBuddyContentMessageToAll(requestId, msg, content)
return self.recv_sendBuddyContentMessageToAll()
def send_sendBuddyContentMessageToAll(self, requestId, msg, content):
self._oprot.writeMessageBegin('sendBuddyContentMessageToAll', TMessageType.CALL, self._seqid)
args = sendBuddyContentMessageToAll_args()
args.requestId = requestId
args.msg = msg
args.content = content
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_sendBuddyContentMessageToAll(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = sendBuddyContentMessageToAll_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "sendBuddyContentMessageToAll failed: unknown result")
def sendBuddyContentMessageToAllAsync(self, requestId, msg, content):
"""
Parameters:
- requestId
- msg
- content
"""
self.send_sendBuddyContentMessageToAllAsync(requestId, msg, content)
return self.recv_sendBuddyContentMessageToAllAsync()
def send_sendBuddyContentMessageToAllAsync(self, requestId, msg, content):
self._oprot.writeMessageBegin('sendBuddyContentMessageToAllAsync', TMessageType.CALL, self._seqid)
args = sendBuddyContentMessageToAllAsync_args()
args.requestId = requestId
args.msg = msg
args.content = content
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_sendBuddyContentMessageToAllAsync(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = sendBuddyContentMessageToAllAsync_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "sendBuddyContentMessageToAllAsync failed: unknown result")
def sendBuddyContentMessageTomids(self, requestId, msg, content, mids):
"""
Parameters:
- requestId
- msg
- content
- mids
"""
self.send_sendBuddyContentMessageTomids(requestId, msg, content, mids)
return self.recv_sendBuddyContentMessageTomids()
def send_sendBuddyContentMessageTomids(self, requestId, msg, content, mids):
self._oprot.writeMessageBegin('sendBuddyContentMessageTomids', TMessageType.CALL, self._seqid)
args = sendBuddyContentMessageTomids_args()
args.requestId = requestId
args.msg = msg
args.content = content
args.mids = mids
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_sendBuddyContentMessageTomids(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = sendBuddyContentMessageTomids_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "sendBuddyContentMessageTomids failed: unknown result")
def sendBuddyContentMessageTomidsAsync(self, requestId, msg, content, mids):
"""
Parameters:
- requestId
- msg
- content
- mids
"""
self.send_sendBuddyContentMessageTomidsAsync(requestId, msg, content, mids)
return self.recv_sendBuddyContentMessageTomidsAsync()
def send_sendBuddyContentMessageTomidsAsync(self, requestId, msg, content, mids):
self._oprot.writeMessageBegin('sendBuddyContentMessageTomidsAsync', TMessageType.CALL, self._seqid)
args = sendBuddyContentMessageTomidsAsync_args()
args.requestId = requestId
args.msg = msg
args.content = content
args.mids = mids
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_sendBuddyContentMessageTomidsAsync(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = sendBuddyContentMessageTomidsAsync_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "sendBuddyContentMessageTomidsAsync failed: unknown result")
def sendBuddyMessageToAll(self, requestId, msg):
"""
Parameters:
- requestId
- msg
"""
self.send_sendBuddyMessageToAll(requestId, msg)
return self.recv_sendBuddyMessageToAll()
def send_sendBuddyMessageToAll(self, requestId, msg):
self._oprot.writeMessageBegin('sendBuddyMessageToAll', TMessageType.CALL, self._seqid)
args = sendBuddyMessageToAll_args()
args.requestId = requestId
args.msg = msg
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_sendBuddyMessageToAll(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = sendBuddyMessageToAll_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "sendBuddyMessageToAll failed: unknown result")
def sendBuddyMessageToAllAsync(self, requestId, msg):
"""
Parameters:
- requestId
- msg
"""
self.send_sendBuddyMessageToAllAsync(requestId, msg)
return self.recv_sendBuddyMessageToAllAsync()
def send_sendBuddyMessageToAllAsync(self, requestId, msg):
self._oprot.writeMessageBegin('sendBuddyMessageToAllAsync', TMessageType.CALL, self._seqid)
args = sendBuddyMessageToAllAsync_args()
args.requestId = requestId
args.msg = msg
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_sendBuddyMessageToAllAsync(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = sendBuddyMessageToAllAsync_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "sendBuddyMessageToAllAsync failed: unknown result")
def sendBuddyMessageTomids(self, requestId, msg, mids):
"""
Parameters:
- requestId
- msg
- mids
"""
self.send_sendBuddyMessageTomids(requestId, msg, mids)
return self.recv_sendBuddyMessageTomids()
def send_sendBuddyMessageTomids(self, requestId, msg, mids):
self._oprot.writeMessageBegin('sendBuddyMessageTomids', TMessageType.CALL, self._seqid)
args = sendBuddyMessageTomids_args()
args.requestId = requestId
args.msg = msg
args.mids = mids
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_sendBuddyMessageTomids(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = sendBuddyMessageTomids_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "sendBuddyMessageTomids failed: unknown result")
def sendBuddyMessageTomidsAsync(self, requestId, msg, mids):
"""
Parameters:
- requestId
- msg
- mids
"""
self.send_sendBuddyMessageTomidsAsync(requestId, msg, mids)
return self.recv_sendBuddyMessageTomidsAsync()
def send_sendBuddyMessageTomidsAsync(self, requestId, msg, mids):
self._oprot.writeMessageBegin('sendBuddyMessageTomidsAsync', TMessageType.CALL, self._seqid)
args = sendBuddyMessageTomidsAsync_args()
args.requestId = requestId
args.msg = msg
args.mids = mids
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_sendBuddyMessageTomidsAsync(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = sendBuddyMessageTomidsAsync_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "sendBuddyMessageTomidsAsync failed: unknown result")
def sendIndividualEventToAllAsync(self, requestId, buddyMid, notificationStatus):
"""
Parameters:
- requestId
- buddyMid
- notificationStatus
"""
self.send_sendIndividualEventToAllAsync(requestId, buddyMid, notificationStatus)
self.recv_sendIndividualEventToAllAsync()
def send_sendIndividualEventToAllAsync(self, requestId, buddyMid, notificationStatus):
self._oprot.writeMessageBegin('sendIndividualEventToAllAsync', TMessageType.CALL, self._seqid)
args = sendIndividualEventToAllAsync_args()
args.requestId = requestId
args.buddyMid = buddyMid
args.notificationStatus = notificationStatus
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_sendIndividualEventToAllAsync(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = sendIndividualEventToAllAsync_result()
result.read(iprot)
iprot.readMessageEnd()
if result.e is not None:
raise result.e
return
def setBuddyOnAir(self, requestId, onAir):
"""
Parameters:
- requestId
- onAir
"""
self.send_setBuddyOnAir(requestId, onAir)
return self.recv_setBuddyOnAir()
def send_setBuddyOnAir(self, requestId, onAir):
self._oprot.writeMessageBegin('setBuddyOnAir', TMessageType.CALL, self._seqid)
args = setBuddyOnAir_args()
args.requestId = requestId
args.onAir = onAir
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_setBuddyOnAir(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = setBuddyOnAir_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "setBuddyOnAir failed: unknown result")
def setBuddyOnAirAsync(self, requestId, onAir):
"""
Parameters:
- requestId
- onAir
"""
self.send_setBuddyOnAirAsync(requestId, onAir)
return self.recv_setBuddyOnAirAsync()
def send_setBuddyOnAirAsync(self, requestId, onAir):
self._oprot.writeMessageBegin('setBuddyOnAirAsync', TMessageType.CALL, self._seqid)
args = setBuddyOnAirAsync_args()
args.requestId = requestId
args.onAir = onAir
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_setBuddyOnAirAsync(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = setBuddyOnAirAsync_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "setBuddyOnAirAsync failed: unknown result")
def storeMessage(self, requestId, messageRequest):
"""
Parameters:
- requestId
- messageRequest
"""
self.send_storeMessage(requestId, messageRequest)
return self.recv_storeMessage()
def send_storeMessage(self, requestId, messageRequest):
self._oprot.writeMessageBegin('storeMessage', TMessageType.CALL, self._seqid)
args = storeMessage_args()
args.requestId = requestId
args.messageRequest = messageRequest
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_storeMessage(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = storeMessage_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "storeMessage failed: unknown result")
def unblockBuddyMember(self, requestId, mid):
"""
Parameters:
- requestId
- mid
"""
self.send_unblockBuddyMember(requestId, mid)
self.recv_unblockBuddyMember()
def send_unblockBuddyMember(self, requestId, mid):
self._oprot.writeMessageBegin('unblockBuddyMember', TMessageType.CALL, self._seqid)
args = unblockBuddyMember_args()
args.requestId = requestId
args.mid = mid
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_unblockBuddyMember(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = unblockBuddyMember_result()
result.read(iprot)
iprot.readMessageEnd()
if result.e is not None:
raise result.e
return
def unregisterBuddy(self, requestId):
"""
Parameters:
- requestId
"""
self.send_unregisterBuddy(requestId)
self.recv_unregisterBuddy()
def send_unregisterBuddy(self, requestId):
self._oprot.writeMessageBegin('unregisterBuddy', TMessageType.CALL, self._seqid)
args = unregisterBuddy_args()
args.requestId = requestId
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_unregisterBuddy(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = unregisterBuddy_result()
result.read(iprot)
iprot.readMessageEnd()
if result.e is not None:
raise result.e
return
def unregisterBuddyAdmin(self, requestId):
"""
Parameters:
- requestId
"""
self.send_unregisterBuddyAdmin(requestId)
self.recv_unregisterBuddyAdmin()
def send_unregisterBuddyAdmin(self, requestId):
self._oprot.writeMessageBegin('unregisterBuddyAdmin', TMessageType.CALL, self._seqid)
args = unregisterBuddyAdmin_args()
args.requestId = requestId
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_unregisterBuddyAdmin(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = unregisterBuddyAdmin_result()
result.read(iprot)
iprot.readMessageEnd()
if result.e is not None:
raise result.e
return
def updateBuddyAdminProfileAttribute(self, requestId, attributes):
"""
Parameters:
- requestId
- attributes
"""
self.send_updateBuddyAdminProfileAttribute(requestId, attributes)
self.recv_updateBuddyAdminProfileAttribute()
def send_updateBuddyAdminProfileAttribute(self, requestId, attributes):
self._oprot.writeMessageBegin('updateBuddyAdminProfileAttribute', TMessageType.CALL, self._seqid)
args = updateBuddyAdminProfileAttribute_args()
args.requestId = requestId
args.attributes = attributes
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_updateBuddyAdminProfileAttribute(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = updateBuddyAdminProfileAttribute_result()
result.read(iprot)
iprot.readMessageEnd()
if result.e is not None:
raise result.e
return
def updateBuddyAdminProfileImage(self, requestId, picture):
"""
Parameters:
- requestId
- picture
"""
self.send_updateBuddyAdminProfileImage(requestId, picture)
self.recv_updateBuddyAdminProfileImage()
def send_updateBuddyAdminProfileImage(self, requestId, picture):
self._oprot.writeMessageBegin('updateBuddyAdminProfileImage', TMessageType.CALL, self._seqid)
args = updateBuddyAdminProfileImage_args()
args.requestId = requestId
args.picture = picture
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_updateBuddyAdminProfileImage(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = updateBuddyAdminProfileImage_result()
result.read(iprot)
iprot.readMessageEnd()
if result.e is not None:
raise result.e
return
def updateBuddyProfileAttributes(self, requestId, attributes):
"""
Parameters:
- requestId
- attributes
"""
self.send_updateBuddyProfileAttributes(requestId, attributes)
return self.recv_updateBuddyProfileAttributes()
def send_updateBuddyProfileAttributes(self, requestId, attributes):
self._oprot.writeMessageBegin('updateBuddyProfileAttributes', TMessageType.CALL, self._seqid)
args = updateBuddyProfileAttributes_args()
args.requestId = requestId
args.attributes = attributes
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_updateBuddyProfileAttributes(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = updateBuddyProfileAttributes_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "updateBuddyProfileAttributes failed: unknown result")
def updateBuddyProfileAttributesAsync(self, requestId, attributes):
"""
Parameters:
- requestId
- attributes
"""
self.send_updateBuddyProfileAttributesAsync(requestId, attributes)
return self.recv_updateBuddyProfileAttributesAsync()
def send_updateBuddyProfileAttributesAsync(self, requestId, attributes):
self._oprot.writeMessageBegin('updateBuddyProfileAttributesAsync', TMessageType.CALL, self._seqid)
args = updateBuddyProfileAttributesAsync_args()
args.requestId = requestId
args.attributes = attributes
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_updateBuddyProfileAttributesAsync(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = updateBuddyProfileAttributesAsync_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "updateBuddyProfileAttributesAsync failed: unknown result")
def updateBuddyProfileImage(self, requestId, image):
"""
Parameters:
- requestId
- image
"""
self.send_updateBuddyProfileImage(requestId, image)
return self.recv_updateBuddyProfileImage()
def send_updateBuddyProfileImage(self, requestId, image):
self._oprot.writeMessageBegin('updateBuddyProfileImage', TMessageType.CALL, self._seqid)
args = updateBuddyProfileImage_args()
args.requestId = requestId
args.image = image
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_updateBuddyProfileImage(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = updateBuddyProfileImage_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "updateBuddyProfileImage failed: unknown result")
def updateBuddyProfileImageAsync(self, requestId, image):
"""
Parameters:
- requestId
- image
"""
self.send_updateBuddyProfileImageAsync(requestId, image)
return self.recv_updateBuddyProfileImageAsync()
def send_updateBuddyProfileImageAsync(self, requestId, image):
self._oprot.writeMessageBegin('updateBuddyProfileImageAsync', TMessageType.CALL, self._seqid)
args = updateBuddyProfileImageAsync_args()
args.requestId = requestId
args.image = image
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_updateBuddyProfileImageAsync(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = updateBuddyProfileImageAsync_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "updateBuddyProfileImageAsync failed: unknown result")
def updateBuddySearchId(self, requestId, searchId):
"""
Parameters:
- requestId
- searchId
"""
self.send_updateBuddySearchId(requestId, searchId)
self.recv_updateBuddySearchId()
def send_updateBuddySearchId(self, requestId, searchId):
self._oprot.writeMessageBegin('updateBuddySearchId', TMessageType.CALL, self._seqid)
args = updateBuddySearchId_args()
args.requestId = requestId
args.searchId = searchId
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_updateBuddySearchId(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = updateBuddySearchId_result()
result.read(iprot)
iprot.readMessageEnd()
if result.e is not None:
raise result.e
return
def updateBuddySettings(self, settings):
"""
Parameters:
- settings
"""
self.send_updateBuddySettings(settings)
self.recv_updateBuddySettings()
def send_updateBuddySettings(self, settings):
self._oprot.writeMessageBegin('updateBuddySettings', TMessageType.CALL, self._seqid)
args = updateBuddySettings_args()
args.settings = settings
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_updateBuddySettings(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = updateBuddySettings_result()
result.read(iprot)
iprot.readMessageEnd()
if result.e is not None:
raise result.e
return
def uploadBuddyContent(self, contentType, content):
"""
Parameters:
- contentType
- content
"""
self.send_uploadBuddyContent(contentType, content)
return self.recv_uploadBuddyContent()
def send_uploadBuddyContent(self, contentType, content):
self._oprot.writeMessageBegin('uploadBuddyContent', TMessageType.CALL, self._seqid)
args = uploadBuddyContent_args()
args.contentType = contentType
args.content = content
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_uploadBuddyContent(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = uploadBuddyContent_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "uploadBuddyContent failed: unknown result")
def findBuddyContactsByQuery(self, language, country, query, fromIndex, count, requestSource):
"""
Parameters:
- language
- country
- query
- fromIndex
- count
- requestSource
"""
self.send_findBuddyContactsByQuery(language, country, query, fromIndex, count, requestSource)
return self.recv_findBuddyContactsByQuery()
def send_findBuddyContactsByQuery(self, language, country, query, fromIndex, count, requestSource):
self._oprot.writeMessageBegin('findBuddyContactsByQuery', TMessageType.CALL, self._seqid)
args = findBuddyContactsByQuery_args()
args.language = language
args.country = country
args.query = query
args.fromIndex = fromIndex
args.count = count
args.requestSource = requestSource
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_findBuddyContactsByQuery(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = findBuddyContactsByQuery_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "findBuddyContactsByQuery failed: unknown result")
def getBuddyContacts(self, language, country, classification, fromIndex, count):
"""
Parameters:
- language
- country
- classification
- fromIndex
- count
"""
self.send_getBuddyContacts(language, country, classification, fromIndex, count)
return self.recv_getBuddyContacts()
def send_getBuddyContacts(self, language, country, classification, fromIndex, count):
self._oprot.writeMessageBegin('getBuddyContacts', TMessageType.CALL, self._seqid)
args = getBuddyContacts_args()
args.language = language
args.country = country
args.classification = classification
args.fromIndex = fromIndex
args.count = count
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getBuddyContacts(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getBuddyContacts_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getBuddyContacts failed: unknown result")
def getBuddyDetail(self, buddyMid):
"""
Parameters:
- buddyMid
"""
self.send_getBuddyDetail(buddyMid)
return self.recv_getBuddyDetail()
def send_getBuddyDetail(self, buddyMid):
self._oprot.writeMessageBegin('getBuddyDetail', TMessageType.CALL, self._seqid)
args = getBuddyDetail_args()
args.buddyMid = buddyMid
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getBuddyDetail(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getBuddyDetail_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getBuddyDetail failed: unknown result")
def getBuddyOnAir(self, buddyMid):
"""
Parameters:
- buddyMid
"""
self.send_getBuddyOnAir(buddyMid)
return self.recv_getBuddyOnAir()
def send_getBuddyOnAir(self, buddyMid):
self._oprot.writeMessageBegin('getBuddyOnAir', TMessageType.CALL, self._seqid)
args = getBuddyOnAir_args()
args.buddyMid = buddyMid
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getBuddyOnAir(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getBuddyOnAir_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getBuddyOnAir failed: unknown result")
def getCountriesHavingBuddy(self):
self.send_getCountriesHavingBuddy()
return self.recv_getCountriesHavingBuddy()
def send_getCountriesHavingBuddy(self):
self._oprot.writeMessageBegin('getCountriesHavingBuddy', TMessageType.CALL, self._seqid)
args = getCountriesHavingBuddy_args()
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getCountriesHavingBuddy(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getCountriesHavingBuddy_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getCountriesHavingBuddy failed: unknown result")
def getNewlyReleasedBuddyIds(self, country):
"""
Parameters:
- country
"""
self.send_getNewlyReleasedBuddyIds(country)
return self.recv_getNewlyReleasedBuddyIds()
def send_getNewlyReleasedBuddyIds(self, country):
self._oprot.writeMessageBegin('getNewlyReleasedBuddyIds', TMessageType.CALL, self._seqid)
args = getNewlyReleasedBuddyIds_args()
args.country = country
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getNewlyReleasedBuddyIds(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getNewlyReleasedBuddyIds_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getNewlyReleasedBuddyIds failed: unknown result")
def getPopularBuddyBanner(self, language, country, applicationType, resourceSpecification):
"""
Parameters:
- language
- country
- applicationType
- resourceSpecification
"""
self.send_getPopularBuddyBanner(language, country, applicationType, resourceSpecification)
return self.recv_getPopularBuddyBanner()
def send_getPopularBuddyBanner(self, language, country, applicationType, resourceSpecification):
self._oprot.writeMessageBegin('getPopularBuddyBanner', TMessageType.CALL, self._seqid)
args = getPopularBuddyBanner_args()
args.language = language
args.country = country
args.applicationType = applicationType
args.resourceSpecification = resourceSpecification
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getPopularBuddyBanner(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getPopularBuddyBanner_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getPopularBuddyBanner failed: unknown result")
def getPopularBuddyLists(self, language, country):
"""
Parameters:
- language
- country
"""
self.send_getPopularBuddyLists(language, country)
return self.recv_getPopularBuddyLists()
def send_getPopularBuddyLists(self, language, country):
self._oprot.writeMessageBegin('getPopularBuddyLists', TMessageType.CALL, self._seqid)
args = getPopularBuddyLists_args()
args.language = language
args.country = country
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getPopularBuddyLists(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getPopularBuddyLists_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getPopularBuddyLists failed: unknown result")
def getPromotedBuddyContacts(self, language, country):
"""
Parameters:
- language
- country
"""
self.send_getPromotedBuddyContacts(language, country)
return self.recv_getPromotedBuddyContacts()
def send_getPromotedBuddyContacts(self, language, country):
self._oprot.writeMessageBegin('getPromotedBuddyContacts', TMessageType.CALL, self._seqid)
args = getPromotedBuddyContacts_args()
args.language = language
args.country = country
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getPromotedBuddyContacts(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getPromotedBuddyContacts_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getPromotedBuddyContacts failed: unknown result")
def activeBuddySubscriberCount(self):
self.send_activeBuddySubscriberCount()
return self.recv_activeBuddySubscriberCount()
def send_activeBuddySubscriberCount(self):
self._oprot.writeMessageBegin('activeBuddySubscriberCount', TMessageType.CALL, self._seqid)
args = activeBuddySubscriberCount_args()
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_activeBuddySubscriberCount(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = activeBuddySubscriberCount_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "activeBuddySubscriberCount failed: unknown result")
def addOperationForChannel(self, opType, param1, param2, param3):
"""
Parameters:
- opType
- param1
- param2
- param3
"""
self.send_addOperationForChannel(opType, param1, param2, param3)
self.recv_addOperationForChannel()
def send_addOperationForChannel(self, opType, param1, param2, param3):
self._oprot.writeMessageBegin('addOperationForChannel', TMessageType.CALL, self._seqid)
args = addOperationForChannel_args()
args.opType = opType
args.param1 = param1
args.param2 = param2
args.param3 = param3
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_addOperationForChannel(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = addOperationForChannel_result()
result.read(iprot)
iprot.readMessageEnd()
if result.e is not None:
raise result.e
return
def displayBuddySubscriberCount(self):
self.send_displayBuddySubscriberCount()
return self.recv_displayBuddySubscriberCount()
def send_displayBuddySubscriberCount(self):
self._oprot.writeMessageBegin('displayBuddySubscriberCount', TMessageType.CALL, self._seqid)
args = displayBuddySubscriberCount_args()
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_displayBuddySubscriberCount(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = displayBuddySubscriberCount_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "displayBuddySubscriberCount failed: unknown result")
def findContactByUseridWithoutAbuseBlockForChannel(self, userid):
"""
Parameters:
- userid
"""
self.send_findContactByUseridWithoutAbuseBlockForChannel(userid)
return self.recv_findContactByUseridWithoutAbuseBlockForChannel()
def send_findContactByUseridWithoutAbuseBlockForChannel(self, userid):
self._oprot.writeMessageBegin('findContactByUseridWithoutAbuseBlockForChannel', TMessageType.CALL, self._seqid)
args = findContactByUseridWithoutAbuseBlockForChannel_args()
args.userid = userid
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_findContactByUseridWithoutAbuseBlockForChannel(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = findContactByUseridWithoutAbuseBlockForChannel_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "findContactByUseridWithoutAbuseBlockForChannel failed: unknown result")
def getAllContactIdsForChannel(self):
self.send_getAllContactIdsForChannel()
return self.recv_getAllContactIdsForChannel()
def send_getAllContactIdsForChannel(self):
self._oprot.writeMessageBegin('getAllContactIdsForChannel', TMessageType.CALL, self._seqid)
args = getAllContactIdsForChannel_args()
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getAllContactIdsForChannel(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getAllContactIdsForChannel_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getAllContactIdsForChannel failed: unknown result")
def getCompactContacts(self, lastModifiedTimestamp):
"""
Parameters:
- lastModifiedTimestamp
"""
self.send_getCompactContacts(lastModifiedTimestamp)
return self.recv_getCompactContacts()
def send_getCompactContacts(self, lastModifiedTimestamp):
self._oprot.writeMessageBegin('getCompactContacts', TMessageType.CALL, self._seqid)
args = getCompactContacts_args()
args.lastModifiedTimestamp = lastModifiedTimestamp
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getCompactContacts(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getCompactContacts_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getCompactContacts failed: unknown result")
def getContactsForChannel(self, ids):
"""
Parameters:
- ids
"""
self.send_getContactsForChannel(ids)
return self.recv_getContactsForChannel()
def send_getContactsForChannel(self, ids):
self._oprot.writeMessageBegin('getContactsForChannel', TMessageType.CALL, self._seqid)
args = getContactsForChannel_args()
args.ids = ids
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getContactsForChannel(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getContactsForChannel_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getContactsForChannel failed: unknown result")
def getDisplayName(self, mid):
"""
Parameters:
- mid
"""
self.send_getDisplayName(mid)
return self.recv_getDisplayName()
def send_getDisplayName(self, mid):
self._oprot.writeMessageBegin('getDisplayName', TMessageType.CALL, self._seqid)
args = getDisplayName_args()
args.mid = mid
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getDisplayName(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getDisplayName_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getDisplayName failed: unknown result")
def getFavoriteMidsForChannel(self):
self.send_getFavoriteMidsForChannel()
return self.recv_getFavoriteMidsForChannel()
def send_getFavoriteMidsForChannel(self):
self._oprot.writeMessageBegin('getFavoriteMidsForChannel', TMessageType.CALL, self._seqid)
args = getFavoriteMidsForChannel_args()
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getFavoriteMidsForChannel(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getFavoriteMidsForChannel_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getFavoriteMidsForChannel failed: unknown result")
def getFriendMids(self):
self.send_getFriendMids()
return self.recv_getFriendMids()
def send_getFriendMids(self):
self._oprot.writeMessageBegin('getFriendMids', TMessageType.CALL, self._seqid)
args = getFriendMids_args()
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getFriendMids(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getFriendMids_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getFriendMids failed: unknown result")
def getGroupMemberMids(self, groupId):
"""
Parameters:
- groupId
"""
self.send_getGroupMemberMids(groupId)
return self.recv_getGroupMemberMids()
def send_getGroupMemberMids(self, groupId):
self._oprot.writeMessageBegin('getGroupMemberMids', TMessageType.CALL, self._seqid)
args = getGroupMemberMids_args()
args.groupId = groupId
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getGroupMemberMids(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getGroupMemberMids_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getGroupMemberMids failed: unknown result")
def getGroupsForChannel(self, groupIds):
"""
Parameters:
- groupIds
"""
self.send_getGroupsForChannel(groupIds)
return self.recv_getGroupsForChannel()
def send_getGroupsForChannel(self, groupIds):
self._oprot.writeMessageBegin('getGroupsForChannel', TMessageType.CALL, self._seqid)
args = getGroupsForChannel_args()
args.groupIds = groupIds
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getGroupsForChannel(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getGroupsForChannel_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getGroupsForChannel failed: unknown result")
def getIdentityCredential(self):
self.send_getIdentityCredential()
return self.recv_getIdentityCredential()
def send_getIdentityCredential(self):
self._oprot.writeMessageBegin('getIdentityCredential', TMessageType.CALL, self._seqid)
args = getIdentityCredential_args()
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getIdentityCredential(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getIdentityCredential_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getIdentityCredential failed: unknown result")
def getJoinedGroupIdsForChannel(self):
self.send_getJoinedGroupIdsForChannel()
return self.recv_getJoinedGroupIdsForChannel()
def send_getJoinedGroupIdsForChannel(self):
self._oprot.writeMessageBegin('getJoinedGroupIdsForChannel', TMessageType.CALL, self._seqid)
args = getJoinedGroupIdsForChannel_args()
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getJoinedGroupIdsForChannel(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getJoinedGroupIdsForChannel_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getJoinedGroupIdsForChannel failed: unknown result")
def getMetaProfile(self):
self.send_getMetaProfile()
return self.recv_getMetaProfile()
def send_getMetaProfile(self):
self._oprot.writeMessageBegin('getMetaProfile', TMessageType.CALL, self._seqid)
args = getMetaProfile_args()
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getMetaProfile(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getMetaProfile_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getMetaProfile failed: unknown result")
def getMid(self):
self.send_getMid()
return self.recv_getMid()
def send_getMid(self):
self._oprot.writeMessageBegin('getMid', TMessageType.CALL, self._seqid)
args = getMid_args()
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getMid(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getMid_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getMid failed: unknown result")
def getPrimaryClientForChannel(self):
self.send_getPrimaryClientForChannel()
return self.recv_getPrimaryClientForChannel()
def send_getPrimaryClientForChannel(self):
self._oprot.writeMessageBegin('getPrimaryClientForChannel', TMessageType.CALL, self._seqid)
args = getPrimaryClientForChannel_args()
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getPrimaryClientForChannel(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getPrimaryClientForChannel_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getPrimaryClientForChannel failed: unknown result")
def getProfileForChannel(self):
self.send_getProfileForChannel()
return self.recv_getProfileForChannel()
def send_getProfileForChannel(self):
self._oprot.writeMessageBegin('getProfileForChannel', TMessageType.CALL, self._seqid)
args = getProfileForChannel_args()
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getProfileForChannel(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getProfileForChannel_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getProfileForChannel failed: unknown result")
def getSimpleChannelContacts(self, ids):
"""
Parameters:
- ids
"""
self.send_getSimpleChannelContacts(ids)
return self.recv_getSimpleChannelContacts()
def send_getSimpleChannelContacts(self, ids):
self._oprot.writeMessageBegin('getSimpleChannelContacts', TMessageType.CALL, self._seqid)
args = getSimpleChannelContacts_args()
args.ids = ids
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getSimpleChannelContacts(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getSimpleChannelContacts_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getSimpleChannelContacts failed: unknown result")
def getUserCountryForBilling(self, country, remoteIp):
"""
Parameters:
- country
- remoteIp
"""
self.send_getUserCountryForBilling(country, remoteIp)
return self.recv_getUserCountryForBilling()
def send_getUserCountryForBilling(self, country, remoteIp):
self._oprot.writeMessageBegin('getUserCountryForBilling', TMessageType.CALL, self._seqid)
args = getUserCountryForBilling_args()
args.country = country
args.remoteIp = remoteIp
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getUserCountryForBilling(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getUserCountryForBilling_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getUserCountryForBilling failed: unknown result")
def getUserCreateTime(self):
self.send_getUserCreateTime()
return self.recv_getUserCreateTime()
def send_getUserCreateTime(self):
self._oprot.writeMessageBegin('getUserCreateTime', TMessageType.CALL, self._seqid)
args = getUserCreateTime_args()
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getUserCreateTime(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getUserCreateTime_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getUserCreateTime failed: unknown result")
def getUserIdentities(self):
self.send_getUserIdentities()
return self.recv_getUserIdentities()
def send_getUserIdentities(self):
self._oprot.writeMessageBegin('getUserIdentities', TMessageType.CALL, self._seqid)
args = getUserIdentities_args()
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getUserIdentities(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getUserIdentities_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getUserIdentities failed: unknown result")
def getUserLanguage(self):
self.send_getUserLanguage()
return self.recv_getUserLanguage()
def send_getUserLanguage(self):
self._oprot.writeMessageBegin('getUserLanguage', TMessageType.CALL, self._seqid)
args = getUserLanguage_args()
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getUserLanguage(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getUserLanguage_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getUserLanguage failed: unknown result")
def getUserMidsWhoAddedMe(self):
self.send_getUserMidsWhoAddedMe()
return self.recv_getUserMidsWhoAddedMe()
def send_getUserMidsWhoAddedMe(self):
self._oprot.writeMessageBegin('getUserMidsWhoAddedMe', TMessageType.CALL, self._seqid)
args = getUserMidsWhoAddedMe_args()
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getUserMidsWhoAddedMe(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getUserMidsWhoAddedMe_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getUserMidsWhoAddedMe failed: unknown result")
def isGroupMember(self, groupId):
"""
Parameters:
- groupId
"""
self.send_isGroupMember(groupId)
return self.recv_isGroupMember()
def send_isGroupMember(self, groupId):
self._oprot.writeMessageBegin('isGroupMember', TMessageType.CALL, self._seqid)
args = isGroupMember_args()
args.groupId = groupId
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_isGroupMember(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = isGroupMember_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "isGroupMember failed: unknown result")
def isInContact(self, mid):
"""
Parameters:
- mid
"""
self.send_isInContact(mid)
return self.recv_isInContact()
def send_isInContact(self, mid):
self._oprot.writeMessageBegin('isInContact', TMessageType.CALL, self._seqid)
args = isInContact_args()
args.mid = mid
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_isInContact(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = isInContact_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "isInContact failed: unknown result")
def registerChannelCP(self, cpId, registerPassword):
"""
Parameters:
- cpId
- registerPassword
"""
self.send_registerChannelCP(cpId, registerPassword)
return self.recv_registerChannelCP()
def send_registerChannelCP(self, cpId, registerPassword):
self._oprot.writeMessageBegin('registerChannelCP', TMessageType.CALL, self._seqid)
args = registerChannelCP_args()
args.cpId = cpId
args.registerPassword = registerPassword
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_registerChannelCP(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = registerChannelCP_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "registerChannelCP failed: unknown result")
def removeNotificationStatus(self, notificationStatus):
"""
Parameters:
- notificationStatus
"""
self.send_removeNotificationStatus(notificationStatus)
self.recv_removeNotificationStatus()
def send_removeNotificationStatus(self, notificationStatus):
self._oprot.writeMessageBegin('removeNotificationStatus', TMessageType.CALL, self._seqid)
args = removeNotificationStatus_args()
args.notificationStatus = notificationStatus
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_removeNotificationStatus(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = removeNotificationStatus_result()
result.read(iprot)
iprot.readMessageEnd()
if result.e is not None:
raise result.e
return
def sendMessageForChannel(self, message):
"""
Parameters:
- message
"""
self.send_sendMessageForChannel(message)
return self.recv_sendMessageForChannel()
def send_sendMessageForChannel(self, message):
self._oprot.writeMessageBegin('sendMessageForChannel', TMessageType.CALL, self._seqid)
args = sendMessageForChannel_args()
args.message = message
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_sendMessageForChannel(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = sendMessageForChannel_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "sendMessageForChannel failed: unknown result")
def sendPinCodeOperation(self, verifier):
"""
Parameters:
- verifier
"""
self.send_sendPinCodeOperation(verifier)
self.recv_sendPinCodeOperation()
def send_sendPinCodeOperation(self, verifier):
self._oprot.writeMessageBegin('sendPinCodeOperation', TMessageType.CALL, self._seqid)
args = sendPinCodeOperation_args()
args.verifier = verifier
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_sendPinCodeOperation(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = sendPinCodeOperation_result()
result.read(iprot)
iprot.readMessageEnd()
if result.e is not None:
raise result.e
return
def updateProfileAttributeForChannel(self, profileAttribute, value):
"""
Parameters:
- profileAttribute
- value
"""
self.send_updateProfileAttributeForChannel(profileAttribute, value)
self.recv_updateProfileAttributeForChannel()
def send_updateProfileAttributeForChannel(self, profileAttribute, value):
self._oprot.writeMessageBegin('updateProfileAttributeForChannel', TMessageType.CALL, self._seqid)
args = updateProfileAttributeForChannel_args()
args.profileAttribute = profileAttribute
args.value = value
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_updateProfileAttributeForChannel(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = updateProfileAttributeForChannel_result()
result.read(iprot)
iprot.readMessageEnd()
if result.e is not None:
raise result.e
return
def approveChannelAndIssueChannelToken(self, channelId):
"""
Parameters:
- channelId
"""
self.send_approveChannelAndIssueChannelToken(channelId)
return self.recv_approveChannelAndIssueChannelToken()
def send_approveChannelAndIssueChannelToken(self, channelId):
self._oprot.writeMessageBegin('approveChannelAndIssueChannelToken', TMessageType.CALL, self._seqid)
args = approveChannelAndIssueChannelToken_args()
args.channelId = channelId
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_approveChannelAndIssueChannelToken(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = approveChannelAndIssueChannelToken_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "approveChannelAndIssueChannelToken failed: unknown result")
def approveChannelAndIssueRequestToken(self, channelId, otpId):
"""
Parameters:
- channelId
- otpId
"""
self.send_approveChannelAndIssueRequestToken(channelId, otpId)
return self.recv_approveChannelAndIssueRequestToken()
def send_approveChannelAndIssueRequestToken(self, channelId, otpId):
self._oprot.writeMessageBegin('approveChannelAndIssueRequestToken', TMessageType.CALL, self._seqid)
args = approveChannelAndIssueRequestToken_args()
args.channelId = channelId
args.otpId = otpId
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_approveChannelAndIssueRequestToken(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = approveChannelAndIssueRequestToken_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "approveChannelAndIssueRequestToken failed: unknown result")
def fetchNotificationItems(self, localRev):
"""
Parameters:
- localRev
"""
self.send_fetchNotificationItems(localRev)
return self.recv_fetchNotificationItems()
def send_fetchNotificationItems(self, localRev):
self._oprot.writeMessageBegin('fetchNotificationItems', TMessageType.CALL, self._seqid)
args = fetchNotificationItems_args()
args.localRev = localRev
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_fetchNotificationItems(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = fetchNotificationItems_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "fetchNotificationItems failed: unknown result")
def getApprovedChannels(self, lastSynced, locale):
"""
Parameters:
- lastSynced
- locale
"""
self.send_getApprovedChannels(lastSynced, locale)
return self.recv_getApprovedChannels()
def send_getApprovedChannels(self, lastSynced, locale):
self._oprot.writeMessageBegin('getApprovedChannels', TMessageType.CALL, self._seqid)
args = getApprovedChannels_args()
args.lastSynced = lastSynced
args.locale = locale
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getApprovedChannels(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getApprovedChannels_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getApprovedChannels failed: unknown result")
def getChannelInfo(self, channelId, locale):
"""
Parameters:
- channelId
- locale
"""
self.send_getChannelInfo(channelId, locale)
return self.recv_getChannelInfo()
def send_getChannelInfo(self, channelId, locale):
self._oprot.writeMessageBegin('getChannelInfo', TMessageType.CALL, self._seqid)
args = getChannelInfo_args()
args.channelId = channelId
args.locale = locale
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getChannelInfo(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getChannelInfo_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getChannelInfo failed: unknown result")
def getChannelNotificationSetting(self, channelId, locale):
"""
Parameters:
- channelId
- locale
"""
self.send_getChannelNotificationSetting(channelId, locale)
return self.recv_getChannelNotificationSetting()
def send_getChannelNotificationSetting(self, channelId, locale):
self._oprot.writeMessageBegin('getChannelNotificationSetting', TMessageType.CALL, self._seqid)
args = getChannelNotificationSetting_args()
args.channelId = channelId
args.locale = locale
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getChannelNotificationSetting(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getChannelNotificationSetting_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getChannelNotificationSetting failed: unknown result")
def getChannelNotificationSettings(self, locale):
"""
Parameters:
- locale
"""
self.send_getChannelNotificationSettings(locale)
return self.recv_getChannelNotificationSettings()
def send_getChannelNotificationSettings(self, locale):
self._oprot.writeMessageBegin('getChannelNotificationSettings', TMessageType.CALL, self._seqid)
args = getChannelNotificationSettings_args()
args.locale = locale
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getChannelNotificationSettings(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getChannelNotificationSettings_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getChannelNotificationSettings failed: unknown result")
def getChannels(self, lastSynced, locale):
"""
Parameters:
- lastSynced
- locale
"""
self.send_getChannels(lastSynced, locale)
return self.recv_getChannels()
def send_getChannels(self, lastSynced, locale):
self._oprot.writeMessageBegin('getChannels', TMessageType.CALL, self._seqid)
args = getChannels_args()
args.lastSynced = lastSynced
args.locale = locale
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getChannels(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getChannels_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getChannels failed: unknown result")
def getDomains(self, lastSynced):
"""
Parameters:
- lastSynced
"""
self.send_getDomains(lastSynced)
return self.recv_getDomains()
def send_getDomains(self, lastSynced):
self._oprot.writeMessageBegin('getDomains', TMessageType.CALL, self._seqid)
args = getDomains_args()
args.lastSynced = lastSynced
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getDomains(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getDomains_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getDomains failed: unknown result")
def getFriendChannelMatrices(self, channelIds):
"""
Parameters:
- channelIds
"""
self.send_getFriendChannelMatrices(channelIds)
return self.recv_getFriendChannelMatrices()
def send_getFriendChannelMatrices(self, channelIds):
self._oprot.writeMessageBegin('getFriendChannelMatrices', TMessageType.CALL, self._seqid)
args = getFriendChannelMatrices_args()
args.channelIds = channelIds
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getFriendChannelMatrices(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getFriendChannelMatrices_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getFriendChannelMatrices failed: unknown result")
def getNotificationBadgeCount(self, localRev):
"""
Parameters:
- localRev
"""
self.send_getNotificationBadgeCount(localRev)
return self.recv_getNotificationBadgeCount()
def send_getNotificationBadgeCount(self, localRev):
self._oprot.writeMessageBegin('getNotificationBadgeCount', TMessageType.CALL, self._seqid)
args = getNotificationBadgeCount_args()
args.localRev = localRev
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_getNotificationBadgeCount(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
x = TApplicationException()
x.read(iprot)
iprot.readMessageEnd()
raise x
result = getNotificationBadgeCount_result()
result.read(iprot)
iprot.readMessageEnd()
if result.success is not None:
return result.success
if result.e is not None:
raise result.e
raise TApplicationException(TApplicationException.MISSING_RESULT, "getNotificationBadgeCount failed: unknown result")
def issueChannelToken(self, channelId):
"""
Parameters:
- channelId
"""
self.send_issueChannelToken(channelId)
return self.recv_issueChannelToken()
def send_issueChannelToken(self, channelId):
self._oprot.writeMessageBegin('issueChannelToken', TMessageType.CALL, self._seqid)
args = issueChannelToken_args()
args.channelId = channelId
args.write(self._oprot)
self._oprot.writeMessageEnd()
self._oprot.trans.flush()
def recv_issueChannelToken(self):
iprot = self._iprot
(fname, mtype, rseqid) = iprot.readMessageBegin()
if mtype == TMessageType.EXCEPTION:
gitextract_snh0bt2x/ ├── .gitignore ├── LINETCR/ │ ├── Api/ │ │ ├── LineTracer.py │ │ ├── Poll.py │ │ ├── Talk.py │ │ ├── __init__.py │ │ └── channel.py │ ├── LineApi.py │ ├── __init__.py │ └── lib/ │ ├── __init__.py │ └── curve/ │ ├── LineService.py │ ├── __init__.py │ ├── constants.py │ └── ttypes.py ├── README.md └── tcr.py
Showing preview only (616K chars total). Download the full file or copy to clipboard to get everything.
SYMBOL INDEX (8912 symbols across 8 files)
FILE: LINETCR/Api/LineTracer.py
class LineTracer (line 9) | class LineTracer(object):
method __init__ (line 13) | def __init__(self, client):
method addOpInterruptWithDict (line 21) | def addOpInterruptWithDict(self, OpInterruptDict):
method addOpInterrupt (line 25) | def addOpInterrupt(self, OperationType, DisposeFunc):
method execute (line 28) | def execute(self):
FILE: LINETCR/Api/Poll.py
class Poll (line 11) | class Poll:
method __init__ (line 26) | def __init__(self, authToken):
method stream (line 39) | def stream(self, sleep=50000):
FILE: LINETCR/Api/Talk.py
class Talk (line 14) | class Talk:
method __init__ (line 29) | def __init__(self):
method login (line 39) | def login(self, mail, passwd, cert=None, callback=None):
method TokenLogin (line 80) | def TokenLogin(self, authToken):
method qrLogin (line 89) | def qrLogin(self, callback):
method __crypt (line 112) | def __crypt(self, mail, passwd, RSA):
FILE: LINETCR/Api/channel.py
class Channel (line 14) | class Channel:
method __init__ (line 31) | def __init__(self, authToken):
method login (line 44) | def login(self):
method new_post (line 57) | def new_post(self, text):
method postPhoto (line 80) | def postPhoto(self,text,path):
method like (line 101) | def like(self, mid, postid, likeType=1001):
method comment (line 123) | def comment(self, mid, postid, text):
method activity (line 144) | def activity(self, limit=20):
method getAlbum (line 157) | def getAlbum(self, gid):
method changeAlbumName (line 171) | def changeAlbumName(self,gid,name,albumId):
method deleteAlbum (line 187) | def deleteAlbum(self,gid,albumId):
method getNote (line 199) | def getNote(self,gid, commentLimit, likeLimit):
method postNote (line 212) | def postNote(self, gid, text):
method getDetail (line 230) | def getDetail(self, mid):
method getHome (line 244) | def getHome(self,mid):
method getCover (line 257) | def getCover(self,mid):
method createAlbum (line 261) | def createAlbum(self,gid,name):
method createAlbum2 (line 279) | def createAlbum2(self,gid,name,path,oid):
FILE: LINETCR/LineApi.py
function def_callback (line 5) | def def_callback(str):
class LINE (line 8) | class LINE:
method __init__ (line 19) | def __init__(self):
method login (line 22) | def login(self, mail=None, passwd=None, cert=None, token=None, qr=Fals...
method getProfile (line 56) | def getProfile(self):
method getSettings (line 59) | def getSettings(self):
method getUserTicket (line 62) | def getUserTicket(self):
method updateProfile (line 65) | def updateProfile(self, profileObject):
method updateSettings (line 68) | def updateSettings(self, settingObject):
method fetchOperation (line 74) | def fetchOperation(self, revision, count):
method fetchOps (line 77) | def fetchOps(self, rev, count):
method getLastOpRevision (line 80) | def getLastOpRevision(self):
method stream (line 83) | def stream(self):
method sendMessage (line 88) | def sendMessage(self, messageObject):
method sendText (line 91) | def sendText(self, Tomid, text):
method post_content (line 97) | def post_content(self, url, data=None, files=None):
method sendImage (line 100) | def sendImage(self, to_, path):
method sendImageWithURL (line 125) | def sendImageWithURL(self, to_, url):
method sendEvent (line 144) | def sendEvent(self, messageObject):
method sendChatChecked (line 147) | def sendChatChecked(self, mid, lastMessageId):
method getMessageBoxCompactWrapUp (line 150) | def getMessageBoxCompactWrapUp(self, mid):
method getMessageBoxCompactWrapUpList (line 153) | def getMessageBoxCompactWrapUpList(self, start, messageBox):
method getRecentMessages (line 156) | def getRecentMessages(self, messageBox, count):
method getMessageBox (line 159) | def getMessageBox(self, channelId, messageboxId, lastMessagesCount):
method getMessageBoxList (line 162) | def getMessageBoxList(self, channelId, lastMessagesCount):
method getMessageBoxListByStatus (line 165) | def getMessageBoxListByStatus(self, channelId, lastMessagesCount, stat...
method getMessageBoxWrapUp (line 168) | def getMessageBoxWrapUp(self, mid):
method getMessageBoxWrapUpList (line 171) | def getMessageBoxWrapUpList(self, start, messageBoxCount):
method blockContact (line 177) | def blockContact(self, mid):
method unblockContact (line 181) | def unblockContact(self, mid):
method findAndAddContactsByMid (line 185) | def findAndAddContactsByMid(self, mid):
method findAndAddContactsByMids (line 189) | def findAndAddContactsByMids(self, midlist):
method findAndAddContactsByUserid (line 193) | def findAndAddContactsByUserid(self, userid):
method findContactsByUserid (line 196) | def findContactsByUserid(self, userid):
method findContactByTicket (line 199) | def findContactByTicket(self, ticketId):
method getAllContactIds (line 202) | def getAllContactIds(self):
method getBlockedContactIds (line 205) | def getBlockedContactIds(self):
method getContact (line 208) | def getContact(self, mid):
method getContacts (line 211) | def getContacts(self, midlist):
method getFavoriteMids (line 214) | def getFavoriteMids(self):
method getHiddenContactMids (line 217) | def getHiddenContactMids(self):
method findGroupByTicket (line 223) | def findGroupByTicket(self, ticketId):
method acceptGroupInvitation (line 226) | def acceptGroupInvitation(self, groupId):
method acceptGroupInvitationByTicket (line 229) | def acceptGroupInvitationByTicket(self, groupId, ticketId):
method cancelGroupInvitation (line 232) | def cancelGroupInvitation(self, groupId, contactIds):
method createGroup (line 235) | def createGroup(self, name, midlist):
method getGroup (line 238) | def getGroup(self, groupId):
method getGroups (line 241) | def getGroups(self, groupIds):
method getGroupIdsInvited (line 244) | def getGroupIdsInvited(self):
method getGroupIdsJoined (line 247) | def getGroupIdsJoined(self):
method inviteIntoGroup (line 250) | def inviteIntoGroup(self, groupId, midlist):
method kickoutFromGroup (line 253) | def kickoutFromGroup(self, groupId, midlist):
method leaveGroup (line 256) | def leaveGroup(self, groupId):
method rejectGroupInvitation (line 259) | def rejectGroupInvitation(self, groupId):
method reissueGroupTicket (line 262) | def reissueGroupTicket(self, groupId):
method updateGroup (line 265) | def updateGroup(self, groupObject):
method findGroupByTicket (line 267) | def findGroupByTicket(self,ticketId):
method createRoom (line 272) | def createRoom(self, midlist):
method getRoom (line 275) | def getRoom(self, roomId):
method inviteIntoRoom (line 278) | def inviteIntoRoom(self, roomId, midlist):
method leaveRoom (line 281) | def leaveRoom(self, roomId):
method new_post (line 286) | def new_post(self, text):
method like (line 289) | def like(self, mid, postid, likeType=1001):
method comment (line 292) | def comment(self, mid, postid, text):
method activity (line 295) | def activity(self, limit=20):
method getAlbum (line 298) | def getAlbum(self, gid):
method changeAlbumName (line 301) | def changeAlbumName(self, gid, name, albumId):
method deleteAlbum (line 304) | def deleteAlbum(self, gid, albumId):
method getNote (line 307) | def getNote(self,gid, commentLimit, likeLimit):
method getDetail (line 310) | def getDetail(self,mid):
method getHome (line 313) | def getHome(self,mid):
method createAlbum (line 316) | def createAlbum(self, gid, name):
method createAlbum2 (line 319) | def createAlbum2(self, gid, name, path):
method __validate (line 323) | def __validate(self, mail, passwd, cert, token, qr):
method loginResult (line 335) | def loginResult(self, callback=None):
FILE: LINETCR/lib/curve/LineService.py
class Iface (line 21) | class Iface:
method getRSAKey (line 22) | def getRSAKey(self):
method notifyEmailConfirmationResult (line 25) | def notifyEmailConfirmationResult(self, parameterMap):
method registerVirtualAccount (line 32) | def registerVirtualAccount(self, locale, encryptedVirtualUserId, encry...
method requestVirtualAccountPasswordChange (line 41) | def requestVirtualAccountPasswordChange(self, virtualMid, encryptedVir...
method requestVirtualAccountPasswordSet (line 51) | def requestVirtualAccountPasswordSet(self, virtualMid, encryptedVirtua...
method unregisterVirtualAccount (line 60) | def unregisterVirtualAccount(self, virtualMid):
method checkUserAge (line 67) | def checkUserAge(self, carrier, sessionId, verifier, standardAge):
method checkUserAgeWithDocomo (line 77) | def checkUserAgeWithDocomo(self, openIdRedirectUrl, standardAge, verif...
method retrieveOpenIdAuthUrlWithDocomo (line 86) | def retrieveOpenIdAuthUrlWithDocomo(self):
method retrieveRequestToken (line 89) | def retrieveRequestToken(self, carrier):
method addBuddyMember (line 96) | def addBuddyMember(self, requestId, userMid):
method addBuddyMembers (line 104) | def addBuddyMembers(self, requestId, userMids):
method blockBuddyMember (line 112) | def blockBuddyMember(self, requestId, mid):
method commitSendMessagesToAll (line 120) | def commitSendMessagesToAll(self, requestIdList):
method commitSendMessagesTomids (line 127) | def commitSendMessagesTomids(self, requestIdList, mids):
method containsBuddyMember (line 135) | def containsBuddyMember(self, requestId, userMid):
method downloadMessageContent (line 143) | def downloadMessageContent(self, requestId, messageId):
method downloadMessageContentPreview (line 151) | def downloadMessageContentPreview(self, requestId, messageId):
method downloadProfileImage (line 159) | def downloadProfileImage(self, requestId):
method downloadProfileImagePreview (line 166) | def downloadProfileImagePreview(self, requestId):
method getActiveMemberCountByBuddyMid (line 173) | def getActiveMemberCountByBuddyMid(self, buddyMid):
method getActiveMemberMidsByBuddyMid (line 180) | def getActiveMemberMidsByBuddyMid(self, buddyMid):
method getAllBuddyMembers (line 187) | def getAllBuddyMembers(self):
method getBlockedBuddyMembers (line 190) | def getBlockedBuddyMembers(self):
method getBlockerCountByBuddyMid (line 193) | def getBlockerCountByBuddyMid(self, buddyMid):
method getBuddyDetailByMid (line 200) | def getBuddyDetailByMid(self, buddyMid):
method getBuddyProfile (line 207) | def getBuddyProfile(self):
method getContactTicket (line 210) | def getContactTicket(self):
method getMemberCountByBuddyMid (line 213) | def getMemberCountByBuddyMid(self, buddyMid):
method getSendBuddyMessageResult (line 220) | def getSendBuddyMessageResult(self, sendBuddyMessageRequestId):
method getSetBuddyOnAirResult (line 227) | def getSetBuddyOnAirResult(self, setBuddyOnAirRequestId):
method getUpdateBuddyProfileResult (line 234) | def getUpdateBuddyProfileResult(self, updateBuddyProfileRequestId):
method isBuddyOnAirByMid (line 241) | def isBuddyOnAirByMid(self, buddyMid):
method linkAndSendBuddyContentMessageToAllAsync (line 248) | def linkAndSendBuddyContentMessageToAllAsync(self, requestId, msg, sou...
method linkAndSendBuddyContentMessageTomids (line 257) | def linkAndSendBuddyContentMessageTomids(self, requestId, msg, sourceC...
method notifyBuddyBlocked (line 267) | def notifyBuddyBlocked(self, buddyMid, blockerMid):
method notifyBuddyUnblocked (line 275) | def notifyBuddyUnblocked(self, buddyMid, blockerMid):
method registerBuddy (line 283) | def registerBuddy(self, buddyId, searchId, displayName, statusMeessage...
method registerBuddyAdmin (line 295) | def registerBuddyAdmin(self, buddyId, searchId, displayName, statusMes...
method reissueContactTicket (line 306) | def reissueContactTicket(self, expirationTime, maxUseCount):
method removeBuddyMember (line 314) | def removeBuddyMember(self, requestId, userMid):
method removeBuddyMembers (line 322) | def removeBuddyMembers(self, requestId, userMids):
method sendBuddyContentMessageToAll (line 330) | def sendBuddyContentMessageToAll(self, requestId, msg, content):
method sendBuddyContentMessageToAllAsync (line 339) | def sendBuddyContentMessageToAllAsync(self, requestId, msg, content):
method sendBuddyContentMessageTomids (line 348) | def sendBuddyContentMessageTomids(self, requestId, msg, content, mids):
method sendBuddyContentMessageTomidsAsync (line 358) | def sendBuddyContentMessageTomidsAsync(self, requestId, msg, content, ...
method sendBuddyMessageToAll (line 368) | def sendBuddyMessageToAll(self, requestId, msg):
method sendBuddyMessageToAllAsync (line 376) | def sendBuddyMessageToAllAsync(self, requestId, msg):
method sendBuddyMessageTomids (line 384) | def sendBuddyMessageTomids(self, requestId, msg, mids):
method sendBuddyMessageTomidsAsync (line 393) | def sendBuddyMessageTomidsAsync(self, requestId, msg, mids):
method sendIndividualEventToAllAsync (line 402) | def sendIndividualEventToAllAsync(self, requestId, buddyMid, notificat...
method setBuddyOnAir (line 411) | def setBuddyOnAir(self, requestId, onAir):
method setBuddyOnAirAsync (line 419) | def setBuddyOnAirAsync(self, requestId, onAir):
method storeMessage (line 427) | def storeMessage(self, requestId, messageRequest):
method unblockBuddyMember (line 435) | def unblockBuddyMember(self, requestId, mid):
method unregisterBuddy (line 443) | def unregisterBuddy(self, requestId):
method unregisterBuddyAdmin (line 450) | def unregisterBuddyAdmin(self, requestId):
method updateBuddyAdminProfileAttribute (line 457) | def updateBuddyAdminProfileAttribute(self, requestId, attributes):
method updateBuddyAdminProfileImage (line 465) | def updateBuddyAdminProfileImage(self, requestId, picture):
method updateBuddyProfileAttributes (line 473) | def updateBuddyProfileAttributes(self, requestId, attributes):
method updateBuddyProfileAttributesAsync (line 481) | def updateBuddyProfileAttributesAsync(self, requestId, attributes):
method updateBuddyProfileImage (line 489) | def updateBuddyProfileImage(self, requestId, image):
method updateBuddyProfileImageAsync (line 497) | def updateBuddyProfileImageAsync(self, requestId, image):
method updateBuddySearchId (line 505) | def updateBuddySearchId(self, requestId, searchId):
method updateBuddySettings (line 513) | def updateBuddySettings(self, settings):
method uploadBuddyContent (line 520) | def uploadBuddyContent(self, contentType, content):
method findBuddyContactsByQuery (line 528) | def findBuddyContactsByQuery(self, language, country, query, fromIndex...
method getBuddyContacts (line 540) | def getBuddyContacts(self, language, country, classification, fromInde...
method getBuddyDetail (line 551) | def getBuddyDetail(self, buddyMid):
method getBuddyOnAir (line 558) | def getBuddyOnAir(self, buddyMid):
method getCountriesHavingBuddy (line 565) | def getCountriesHavingBuddy(self):
method getNewlyReleasedBuddyIds (line 568) | def getNewlyReleasedBuddyIds(self, country):
method getPopularBuddyBanner (line 575) | def getPopularBuddyBanner(self, language, country, applicationType, re...
method getPopularBuddyLists (line 585) | def getPopularBuddyLists(self, language, country):
method getPromotedBuddyContacts (line 593) | def getPromotedBuddyContacts(self, language, country):
method activeBuddySubscriberCount (line 601) | def activeBuddySubscriberCount(self):
method addOperationForChannel (line 604) | def addOperationForChannel(self, opType, param1, param2, param3):
method displayBuddySubscriberCount (line 614) | def displayBuddySubscriberCount(self):
method findContactByUseridWithoutAbuseBlockForChannel (line 617) | def findContactByUseridWithoutAbuseBlockForChannel(self, userid):
method getAllContactIdsForChannel (line 624) | def getAllContactIdsForChannel(self):
method getCompactContacts (line 627) | def getCompactContacts(self, lastModifiedTimestamp):
method getContactsForChannel (line 634) | def getContactsForChannel(self, ids):
method getDisplayName (line 641) | def getDisplayName(self, mid):
method getFavoriteMidsForChannel (line 648) | def getFavoriteMidsForChannel(self):
method getFriendMids (line 651) | def getFriendMids(self):
method getGroupMemberMids (line 654) | def getGroupMemberMids(self, groupId):
method getGroupsForChannel (line 661) | def getGroupsForChannel(self, groupIds):
method getIdentityCredential (line 668) | def getIdentityCredential(self):
method getJoinedGroupIdsForChannel (line 671) | def getJoinedGroupIdsForChannel(self):
method getMetaProfile (line 674) | def getMetaProfile(self):
method getMid (line 677) | def getMid(self):
method getPrimaryClientForChannel (line 680) | def getPrimaryClientForChannel(self):
method getProfileForChannel (line 683) | def getProfileForChannel(self):
method getSimpleChannelContacts (line 686) | def getSimpleChannelContacts(self, ids):
method getUserCountryForBilling (line 693) | def getUserCountryForBilling(self, country, remoteIp):
method getUserCreateTime (line 701) | def getUserCreateTime(self):
method getUserIdentities (line 704) | def getUserIdentities(self):
method getUserLanguage (line 707) | def getUserLanguage(self):
method getUserMidsWhoAddedMe (line 710) | def getUserMidsWhoAddedMe(self):
method isGroupMember (line 713) | def isGroupMember(self, groupId):
method isInContact (line 720) | def isInContact(self, mid):
method registerChannelCP (line 727) | def registerChannelCP(self, cpId, registerPassword):
method removeNotificationStatus (line 735) | def removeNotificationStatus(self, notificationStatus):
method sendMessageForChannel (line 742) | def sendMessageForChannel(self, message):
method sendPinCodeOperation (line 749) | def sendPinCodeOperation(self, verifier):
method updateProfileAttributeForChannel (line 756) | def updateProfileAttributeForChannel(self, profileAttribute, value):
method approveChannelAndIssueChannelToken (line 764) | def approveChannelAndIssueChannelToken(self, channelId):
method approveChannelAndIssueRequestToken (line 771) | def approveChannelAndIssueRequestToken(self, channelId, otpId):
method fetchNotificationItems (line 779) | def fetchNotificationItems(self, localRev):
method getApprovedChannels (line 786) | def getApprovedChannels(self, lastSynced, locale):
method getChannelInfo (line 794) | def getChannelInfo(self, channelId, locale):
method getChannelNotificationSetting (line 802) | def getChannelNotificationSetting(self, channelId, locale):
method getChannelNotificationSettings (line 810) | def getChannelNotificationSettings(self, locale):
method getChannels (line 817) | def getChannels(self, lastSynced, locale):
method getDomains (line 825) | def getDomains(self, lastSynced):
method getFriendChannelMatrices (line 832) | def getFriendChannelMatrices(self, channelIds):
method getNotificationBadgeCount (line 839) | def getNotificationBadgeCount(self, localRev):
method issueChannelToken (line 846) | def issueChannelToken(self, channelId):
method issueRequestToken (line 853) | def issueRequestToken(self, channelId, otpId):
method issueRequestTokenWithAuthScheme (line 861) | def issueRequestTokenWithAuthScheme(self, channelId, otpId, authScheme...
method reserveCoinUse (line 871) | def reserveCoinUse(self, request, locale):
method revokeChannel (line 879) | def revokeChannel(self, channelId):
method syncChannelData (line 886) | def syncChannelData(self, lastSynced, locale):
method updateChannelNotificationSetting (line 894) | def updateChannelNotificationSetting(self, setting):
method fetchMessageOperations (line 901) | def fetchMessageOperations(self, localRevision, lastOpTimestamp, count):
method getLastReadMessageIds (line 910) | def getLastReadMessageIds(self, chatId):
method multiGetLastReadMessageIds (line 917) | def multiGetLastReadMessageIds(self, chatIds):
method buyCoinProduct (line 924) | def buyCoinProduct(self, paymentReservation):
method buyFreeProduct (line 931) | def buyFreeProduct(self, receiverMid, productId, messageTemplate, lang...
method buyMustbuyProduct (line 943) | def buyMustbuyProduct(self, receiverMid, productId, messageTemplate, l...
method checkCanReceivePresent (line 956) | def checkCanReceivePresent(self, recipientMid, packageId, language, co...
method getActivePurchases (line 966) | def getActivePurchases(self, start, size, language, country):
method getActivePurchaseVersions (line 976) | def getActivePurchaseVersions(self, start, size, language, country):
method getCoinProducts (line 986) | def getCoinProducts(self, appStoreCode, country, language):
method getCoinProductsByPgCode (line 995) | def getCoinProductsByPgCode(self, appStoreCode, pgCode, country, langu...
method getCoinPurchaseHistory (line 1005) | def getCoinPurchaseHistory(self, request):
method getCoinUseAndRefundHistory (line 1012) | def getCoinUseAndRefundHistory(self, request):
method getDownloads (line 1019) | def getDownloads(self, start, size, language, country):
method getEventPackages (line 1029) | def getEventPackages(self, start, size, language, country):
method getNewlyReleasedPackages (line 1039) | def getNewlyReleasedPackages(self, start, size, language, country):
method getPopularPackages (line 1049) | def getPopularPackages(self, start, size, language, country):
method getPresentsReceived (line 1059) | def getPresentsReceived(self, start, size, language, country):
method getPresentsSent (line 1069) | def getPresentsSent(self, start, size, language, country):
method getProduct (line 1079) | def getProduct(self, packageID, language, country):
method getProductList (line 1088) | def getProductList(self, productIdList, language, country):
method getProductListWithCarrier (line 1097) | def getProductListWithCarrier(self, productIdList, language, country, ...
method getProductWithCarrier (line 1107) | def getProductWithCarrier(self, packageID, language, country, carrierC...
method getPurchaseHistory (line 1117) | def getPurchaseHistory(self, start, size, language, country):
method getTotalBalance (line 1127) | def getTotalBalance(self, appStoreCode):
method notifyDownloaded (line 1134) | def notifyDownloaded(self, packageId, language):
method reserveCoinPurchase (line 1142) | def reserveCoinPurchase(self, request):
method reservePayment (line 1149) | def reservePayment(self, paymentReservation):
method getSnsFriends (line 1156) | def getSnsFriends(self, snsIdType, snsAccessToken, startIdx, limit):
method getSnsMyProfile (line 1166) | def getSnsMyProfile(self, snsIdType, snsAccessToken):
method postSnsInvitationMessage (line 1174) | def postSnsInvitationMessage(self, snsIdType, snsAccessToken, toSnsUse...
method acceptGroupInvitation (line 1183) | def acceptGroupInvitation(self, reqSeq, groupId):
method acceptGroupInvitationByTicket (line 1191) | def acceptGroupInvitationByTicket(self, reqSeq, groupId, ticketId):
method acceptProximityMatches (line 1200) | def acceptProximityMatches(self, sessionId, ids):
method acquireCallRoute (line 1208) | def acquireCallRoute(self, to):
method acquireCallTicket (line 1215) | def acquireCallTicket(self, to):
method acquireEncryptedAccessToken (line 1222) | def acquireEncryptedAccessToken(self, featureType):
method addSnsId (line 1229) | def addSnsId(self, snsIdType, snsAccessToken):
method blockContact (line 1237) | def blockContact(self, reqSeq, id):
method blockRecommendation (line 1245) | def blockRecommendation(self, reqSeq, id):
method cancelGroupInvitation (line 1253) | def cancelGroupInvitation(self, reqSeq, groupId, contactIds):
method changeVerificationMethod (line 1262) | def changeVerificationMethod(self, sessionId, method):
method clearIdentityCredential (line 1270) | def clearIdentityCredential(self):
method clearMessageBox (line 1273) | def clearMessageBox(self, channelId, messageBoxId):
method closeProximityMatch (line 1281) | def closeProximityMatch(self, sessionId):
method commitSendMessage (line 1288) | def commitSendMessage(self, seq, messageId, receiverMids):
method commitSendMessages (line 1297) | def commitSendMessages(self, seq, messageIds, receiverMids):
method commitUpdateProfile (line 1306) | def commitUpdateProfile(self, seq, attrs, receiverMids):
method confirmEmail (line 1315) | def confirmEmail(self, verifier, pinCode):
method createGroup (line 1323) | def createGroup(self, seq, name, contactIds):
method createQrcodeBase64Image (line 1332) | def createQrcodeBase64Image(self, url, characterSet, imageSize, x, y, ...
method createRoom (line 1345) | def createRoom(self, reqSeq, contactIds):
method createSession (line 1353) | def createSession(self):
method fetchAnnouncements (line 1356) | def fetchAnnouncements(self, lastFetchedIndex):
method fetchMessages (line 1363) | def fetchMessages(self, localTs, count):
method fetchOperations (line 1371) | def fetchOperations(self, localRev, count):
method fetchOps (line 1379) | def fetchOps(self, localRev, count, globalRev, individualRev):
method findAndAddContactsByEmail (line 1389) | def findAndAddContactsByEmail(self, reqSeq, emails):
method findAndAddContactsByMid (line 1397) | def findAndAddContactsByMid(self, reqSeq, mid):
method findAndAddContactsByPhone (line 1405) | def findAndAddContactsByPhone(self, reqSeq, phones):
method findAndAddContactsByUserid (line 1413) | def findAndAddContactsByUserid(self, reqSeq, userid):
method findContactByUserid (line 1421) | def findContactByUserid(self, userid):
method findContactByUserTicket (line 1428) | def findContactByUserTicket(self, ticketId):
method findGroupByTicket (line 1435) | def findGroupByTicket(self, ticketId):
method findContactsByEmail (line 1442) | def findContactsByEmail(self, emails):
method findContactsByPhone (line 1449) | def findContactsByPhone(self, phones):
method findSnsIdUserStatus (line 1456) | def findSnsIdUserStatus(self, snsIdType, snsAccessToken, udidHash):
method finishUpdateVerification (line 1465) | def finishUpdateVerification(self, sessionId):
method generateUserTicket (line 1472) | def generateUserTicket(self, expirationTime, maxUseCount):
method getAcceptedProximityMatches (line 1480) | def getAcceptedProximityMatches(self, sessionId):
method getActiveBuddySubscriberIds (line 1487) | def getActiveBuddySubscriberIds(self):
method getAllContactIds (line 1490) | def getAllContactIds(self):
method getAuthQrcode (line 1493) | def getAuthQrcode(self, keepLoggedIn, systemName):
method getBlockedContactIds (line 1501) | def getBlockedContactIds(self):
method getBlockedContactIdsByRange (line 1504) | def getBlockedContactIdsByRange(self, start, count):
method getBlockedRecommendationIds (line 1512) | def getBlockedRecommendationIds(self):
method getBuddyBlockerIds (line 1515) | def getBuddyBlockerIds(self):
method getBuddyLocation (line 1518) | def getBuddyLocation(self, mid, index):
method getCompactContactsModifiedSince (line 1526) | def getCompactContactsModifiedSince(self, timestamp):
method getCompactGroup (line 1533) | def getCompactGroup(self, groupId):
method getCompactRoom (line 1540) | def getCompactRoom(self, roomId):
method getContact (line 1547) | def getContact(self, id):
method getContacts (line 1554) | def getContacts(self, ids):
method getCountryWithRequestIp (line 1561) | def getCountryWithRequestIp(self):
method getFavoriteMids (line 1564) | def getFavoriteMids(self):
method getGroup (line 1567) | def getGroup(self, groupId):
method getGroupIdsInvited (line 1574) | def getGroupIdsInvited(self):
method getGroupIdsJoined (line 1577) | def getGroupIdsJoined(self):
method getGroups (line 1580) | def getGroups(self, groupIds):
method getHiddenContactMids (line 1587) | def getHiddenContactMids(self):
method getIdentityIdentifier (line 1590) | def getIdentityIdentifier(self):
method getLastAnnouncementIndex (line 1593) | def getLastAnnouncementIndex(self):
method getLastOpRevision (line 1596) | def getLastOpRevision(self):
method getMessageBox (line 1599) | def getMessageBox(self, channelId, messageBoxId, lastMessagesCount):
method getMessageBoxCompactWrapUp (line 1608) | def getMessageBoxCompactWrapUp(self, mid):
method getMessageBoxCompactWrapUpList (line 1615) | def getMessageBoxCompactWrapUpList(self, start, messageBoxCount):
method getMessageBoxList (line 1623) | def getMessageBoxList(self, channelId, lastMessagesCount):
method getMessageBoxListByStatus (line 1631) | def getMessageBoxListByStatus(self, channelId, lastMessagesCount, stat...
method getMessageBoxWrapUp (line 1640) | def getMessageBoxWrapUp(self, mid):
method getMessageBoxWrapUpList (line 1647) | def getMessageBoxWrapUpList(self, start, messageBoxCount):
method getMessagesBySequenceNumber (line 1655) | def getMessagesBySequenceNumber(self, channelId, messageBoxId, startSe...
method getNextMessages (line 1665) | def getNextMessages(self, messageBoxId, startSeq, messagesCount):
method getNotificationPolicy (line 1674) | def getNotificationPolicy(self, carrier):
method getPreviousMessages (line 1681) | def getPreviousMessages(self, messageBoxId, endSeq, messagesCount):
method getProfile (line 1690) | def getProfile(self):
method getProximityMatchCandidateList (line 1693) | def getProximityMatchCandidateList(self, sessionId):
method getProximityMatchCandidates (line 1700) | def getProximityMatchCandidates(self, sessionId):
method getRecentMessages (line 1707) | def getRecentMessages(self, messageBoxId, messagesCount):
method getRecommendationIds (line 1715) | def getRecommendationIds(self):
method getRoom (line 1718) | def getRoom(self, roomId):
method getRSAKeyInfo (line 1725) | def getRSAKeyInfo(self, provider):
method getServerTime (line 1732) | def getServerTime(self):
method getSessions (line 1735) | def getSessions(self):
method getSettings (line 1738) | def getSettings(self):
method getSettingsAttributes (line 1741) | def getSettingsAttributes(self, attrBitset):
method getSystemConfiguration (line 1748) | def getSystemConfiguration(self):
method getUserTicket (line 1751) | def getUserTicket(self):
method getWapInvitation (line 1754) | def getWapInvitation(self, invitationHash):
method invalidateUserTicket (line 1761) | def invalidateUserTicket(self):
method inviteFriendsBySms (line 1764) | def inviteFriendsBySms(self, phoneNumberList):
method inviteIntoGroup (line 1771) | def inviteIntoGroup(self, reqSeq, groupId, contactIds):
method inviteIntoRoom (line 1780) | def inviteIntoRoom(self, reqSeq, roomId, contactIds):
method inviteViaEmail (line 1789) | def inviteViaEmail(self, reqSeq, email, name):
method isIdentityIdentifierAvailable (line 1798) | def isIdentityIdentifierAvailable(self, provider, identifier):
method isUseridAvailable (line 1806) | def isUseridAvailable(self, userid):
method kickoutFromGroup (line 1813) | def kickoutFromGroup(self, reqSeq, groupId, contactIds):
method leaveGroup (line 1822) | def leaveGroup(self, reqSeq, groupId):
method leaveRoom (line 1830) | def leaveRoom(self, reqSeq, roomId):
method loginWithIdentityCredential (line 1838) | def loginWithIdentityCredential(self, identityProvider, identifier, pa...
method loginWithIdentityCredentialForCertificate (line 1851) | def loginWithIdentityCredentialForCertificate(self, identityProvider, ...
method loginWithVerifier (line 1864) | def loginWithVerifier(self, verifier):
method loginWithVerifierForCerificate (line 1871) | def loginWithVerifierForCerificate(self, verifier):
method loginWithVerifierForCertificate (line 1878) | def loginWithVerifierForCertificate(self, verifier):
method logout (line 1885) | def logout(self):
method logoutSession (line 1888) | def logoutSession(self, tokenKey):
method noop (line 1895) | def noop(self):
method notifiedRedirect (line 1898) | def notifiedRedirect(self, paramMap):
method notifyBuddyOnAir (line 1905) | def notifyBuddyOnAir(self, seq, receiverMids):
method notifyIndividualEvent (line 1913) | def notifyIndividualEvent(self, notificationStatus, receiverMids):
method notifyInstalled (line 1921) | def notifyInstalled(self, udidHash, applicationTypeWithExtensions):
method notifyRegistrationComplete (line 1929) | def notifyRegistrationComplete(self, udidHash, applicationTypeWithExte...
method notifySleep (line 1937) | def notifySleep(self, lastRev, badge):
method notifyUpdated (line 1945) | def notifyUpdated(self, lastRev, deviceInfo):
method openProximityMatch (line 1953) | def openProximityMatch(self, location):
method registerBuddyUser (line 1960) | def registerBuddyUser(self, buddyId, registrarPassword):
method registerBuddyUserid (line 1968) | def registerBuddyUserid(self, seq, userid):
method registerDevice (line 1976) | def registerDevice(self, sessionId):
method registerDeviceWithIdentityCredential (line 1983) | def registerDeviceWithIdentityCredential(self, sessionId, provider, id...
method registerDeviceWithoutPhoneNumber (line 1993) | def registerDeviceWithoutPhoneNumber(self, region, udidHash, deviceInfo):
method registerDeviceWithoutPhoneNumberWithIdentityCredential (line 2002) | def registerDeviceWithoutPhoneNumberWithIdentityCredential(self, regio...
method registerUserid (line 2015) | def registerUserid(self, reqSeq, userid):
method registerWapDevice (line 2023) | def registerWapDevice(self, invitationHash, guidHash, email, deviceInfo):
method registerWithExistingSnsIdAndIdentityCredential (line 2033) | def registerWithExistingSnsIdAndIdentityCredential(self, identityCrede...
method registerWithSnsId (line 2043) | def registerWithSnsId(self, snsIdType, snsAccessToken, region, udidHas...
method registerWithSnsIdAndIdentityCredential (line 2055) | def registerWithSnsIdAndIdentityCredential(self, snsIdType, snsAccessT...
method reissueDeviceCredential (line 2067) | def reissueDeviceCredential(self):
method reissueUserTicket (line 2070) | def reissueUserTicket(self, expirationTime, maxUseCount):
method reissueGroupTicket (line 2078) | def reissueGroupTicket(self, groupId):
method rejectGroupInvitation (line 2085) | def rejectGroupInvitation(self, reqSeq, groupId):
method releaseSession (line 2093) | def releaseSession(self):
method removeAllMessages (line 2096) | def removeAllMessages(self, seq, lastMessageId):
method removeBuddyLocation (line 2104) | def removeBuddyLocation(self, mid, index):
method removeMessage (line 2112) | def removeMessage(self, messageId):
method removeMessageFromMyHome (line 2119) | def removeMessageFromMyHome(self, messageId):
method removeSnsId (line 2126) | def removeSnsId(self, snsIdType):
method report (line 2133) | def report(self, syncOpRevision, category, report):
method reportContacts (line 2142) | def reportContacts(self, syncOpRevision, category, contactReports, act...
method reportGroups (line 2152) | def reportGroups(self, syncOpRevision, groups):
method reportProfile (line 2160) | def reportProfile(self, syncOpRevision, profile):
method reportRooms (line 2168) | def reportRooms(self, syncOpRevision, rooms):
method reportSettings (line 2176) | def reportSettings(self, syncOpRevision, settings):
method reportSpammer (line 2184) | def reportSpammer(self, spammerMid, spammerReasons, spamMessageIds):
method requestAccountPasswordReset (line 2193) | def requestAccountPasswordReset(self, provider, identifier, locale):
method requestEmailConfirmation (line 2202) | def requestEmailConfirmation(self, emailConfirmation):
method requestIdentityUnbind (line 2209) | def requestIdentityUnbind(self, provider, identifier):
method resendEmailConfirmation (line 2217) | def resendEmailConfirmation(self, verifier):
method resendPinCode (line 2224) | def resendPinCode(self, sessionId):
method resendPinCodeBySMS (line 2231) | def resendPinCodeBySMS(self, sessionId):
method sendChatChecked (line 2238) | def sendChatChecked(self, seq, consumer, lastMessageId):
method sendChatRemoved (line 2247) | def sendChatRemoved(self, seq, consumer, lastMessageId):
method sendContentPreviewUpdated (line 2256) | def sendContentPreviewUpdated(self, esq, messageId, receiverMids):
method sendContentReceipt (line 2265) | def sendContentReceipt(self, seq, consumer, messageId):
method sendDummyPush (line 2274) | def sendDummyPush(self):
method sendEvent (line 2277) | def sendEvent(self, seq, message):
method sendMessage (line 2285) | def sendMessage(self, seq, message):
method sendMessageIgnored (line 2293) | def sendMessageIgnored(self, seq, consumer, messageIds):
method sendMessageReceipt (line 2302) | def sendMessageReceipt(self, seq, consumer, messageIds):
method sendMessageToMyHome (line 2311) | def sendMessageToMyHome(self, seq, message):
method setBuddyLocation (line 2319) | def setBuddyLocation(self, mid, index, location):
method setIdentityCredential (line 2328) | def setIdentityCredential(self, provider, identifier, verifier):
method setNotificationsEnabled (line 2337) | def setNotificationsEnabled(self, reqSeq, type, target, enablement):
method startUpdateVerification (line 2347) | def startUpdateVerification(self, region, carrier, phone, udidHash, de...
method startVerification (line 2360) | def startVerification(self, region, carrier, phone, udidHash, deviceIn...
method storeUpdateProfileAttribute (line 2374) | def storeUpdateProfileAttribute(self, seq, profileAttribute, value):
method syncContactBySnsIds (line 2383) | def syncContactBySnsIds(self, reqSeq, modifications):
method syncContacts (line 2391) | def syncContacts(self, reqSeq, localContacts):
method trySendMessage (line 2399) | def trySendMessage(self, seq, message):
method unblockContact (line 2407) | def unblockContact(self, reqSeq, id):
method unblockRecommendation (line 2415) | def unblockRecommendation(self, reqSeq, id):
method unregisterUserAndDevice (line 2423) | def unregisterUserAndDevice(self):
method updateApnsDeviceToken (line 2426) | def updateApnsDeviceToken(self, apnsDeviceToken):
method updateBuddySetting (line 2433) | def updateBuddySetting(self, key, value):
method updateC2DMRegistrationId (line 2441) | def updateC2DMRegistrationId(self, registrationId):
method updateContactSetting (line 2448) | def updateContactSetting(self, reqSeq, mid, flag, value):
method updateCustomModeSettings (line 2458) | def updateCustomModeSettings(self, customMode, paramMap):
method updateDeviceInfo (line 2466) | def updateDeviceInfo(self, deviceUid, deviceInfo):
method updateGroup (line 2474) | def updateGroup(self, reqSeq, group):
method updateNotificationToken (line 2482) | def updateNotificationToken(self, type, token):
method updateNotificationTokenWithBytes (line 2490) | def updateNotificationTokenWithBytes(self, type, token):
method updateProfile (line 2498) | def updateProfile(self, reqSeq, profile):
method updateProfileAttribute (line 2506) | def updateProfileAttribute(self, reqSeq, attr, value):
method updateRegion (line 2515) | def updateRegion(self, region):
method updateSettings (line 2522) | def updateSettings(self, reqSeq, settings):
method updateSettings2 (line 2530) | def updateSettings2(self, reqSeq, settings):
method updateSettingsAttribute (line 2538) | def updateSettingsAttribute(self, reqSeq, attr, value):
method updateSettingsAttributes (line 2547) | def updateSettingsAttributes(self, reqSeq, attrBitset, settings):
method verifyIdentityCredential (line 2556) | def verifyIdentityCredential(self, identityProvider, identifier, passw...
method verifyIdentityCredentialWithResult (line 2565) | def verifyIdentityCredentialWithResult(self, identityCredential):
method verifyPhone (line 2572) | def verifyPhone(self, sessionId, pinCode, udidHash):
method verifyQrcode (line 2581) | def verifyQrcode(self, verifier, pinCode):
method notify (line 2589) | def notify(self, event):
class Client (line 2597) | class Client(Iface):
method __init__ (line 2598) | def __init__(self, iprot, oprot=None):
method getRSAKey (line 2604) | def getRSAKey(self):
method send_getRSAKey (line 2608) | def send_getRSAKey(self):
method recv_getRSAKey (line 2615) | def recv_getRSAKey(self):
method notifyEmailConfirmationResult (line 2632) | def notifyEmailConfirmationResult(self, parameterMap):
method send_notifyEmailConfirmationResult (line 2640) | def send_notifyEmailConfirmationResult(self, parameterMap):
method recv_notifyEmailConfirmationResult (line 2648) | def recv_notifyEmailConfirmationResult(self):
method registerVirtualAccount (line 2663) | def registerVirtualAccount(self, locale, encryptedVirtualUserId, encry...
method send_registerVirtualAccount (line 2673) | def send_registerVirtualAccount(self, locale, encryptedVirtualUserId, ...
method recv_registerVirtualAccount (line 2683) | def recv_registerVirtualAccount(self):
method requestVirtualAccountPasswordChange (line 2700) | def requestVirtualAccountPasswordChange(self, virtualMid, encryptedVir...
method send_requestVirtualAccountPasswordChange (line 2711) | def send_requestVirtualAccountPasswordChange(self, virtualMid, encrypt...
method recv_requestVirtualAccountPasswordChange (line 2722) | def recv_requestVirtualAccountPasswordChange(self):
method requestVirtualAccountPasswordSet (line 2737) | def requestVirtualAccountPasswordSet(self, virtualMid, encryptedVirtua...
method send_requestVirtualAccountPasswordSet (line 2747) | def send_requestVirtualAccountPasswordSet(self, virtualMid, encryptedV...
method recv_requestVirtualAccountPasswordSet (line 2757) | def recv_requestVirtualAccountPasswordSet(self):
method unregisterVirtualAccount (line 2772) | def unregisterVirtualAccount(self, virtualMid):
method send_unregisterVirtualAccount (line 2780) | def send_unregisterVirtualAccount(self, virtualMid):
method recv_unregisterVirtualAccount (line 2788) | def recv_unregisterVirtualAccount(self):
method checkUserAge (line 2803) | def checkUserAge(self, carrier, sessionId, verifier, standardAge):
method send_checkUserAge (line 2814) | def send_checkUserAge(self, carrier, sessionId, verifier, standardAge):
method recv_checkUserAge (line 2825) | def recv_checkUserAge(self):
method checkUserAgeWithDocomo (line 2842) | def checkUserAgeWithDocomo(self, openIdRedirectUrl, standardAge, verif...
method send_checkUserAgeWithDocomo (line 2852) | def send_checkUserAgeWithDocomo(self, openIdRedirectUrl, standardAge, ...
method recv_checkUserAgeWithDocomo (line 2862) | def recv_checkUserAgeWithDocomo(self):
method retrieveOpenIdAuthUrlWithDocomo (line 2879) | def retrieveOpenIdAuthUrlWithDocomo(self):
method send_retrieveOpenIdAuthUrlWithDocomo (line 2883) | def send_retrieveOpenIdAuthUrlWithDocomo(self):
method recv_retrieveOpenIdAuthUrlWithDocomo (line 2890) | def recv_retrieveOpenIdAuthUrlWithDocomo(self):
method retrieveRequestToken (line 2907) | def retrieveRequestToken(self, carrier):
method send_retrieveRequestToken (line 2915) | def send_retrieveRequestToken(self, carrier):
method recv_retrieveRequestToken (line 2923) | def recv_retrieveRequestToken(self):
method addBuddyMember (line 2940) | def addBuddyMember(self, requestId, userMid):
method send_addBuddyMember (line 2949) | def send_addBuddyMember(self, requestId, userMid):
method recv_addBuddyMember (line 2958) | def recv_addBuddyMember(self):
method addBuddyMembers (line 2973) | def addBuddyMembers(self, requestId, userMids):
method send_addBuddyMembers (line 2982) | def send_addBuddyMembers(self, requestId, userMids):
method recv_addBuddyMembers (line 2991) | def recv_addBuddyMembers(self):
method blockBuddyMember (line 3006) | def blockBuddyMember(self, requestId, mid):
method send_blockBuddyMember (line 3015) | def send_blockBuddyMember(self, requestId, mid):
method recv_blockBuddyMember (line 3024) | def recv_blockBuddyMember(self):
method commitSendMessagesToAll (line 3039) | def commitSendMessagesToAll(self, requestIdList):
method send_commitSendMessagesToAll (line 3047) | def send_commitSendMessagesToAll(self, requestIdList):
method recv_commitSendMessagesToAll (line 3055) | def recv_commitSendMessagesToAll(self):
method commitSendMessagesTomids (line 3072) | def commitSendMessagesTomids(self, requestIdList, mids):
method send_commitSendMessagesTomids (line 3081) | def send_commitSendMessagesTomids(self, requestIdList, mids):
method recv_commitSendMessagesTomids (line 3090) | def recv_commitSendMessagesTomids(self):
method containsBuddyMember (line 3107) | def containsBuddyMember(self, requestId, userMid):
method send_containsBuddyMember (line 3116) | def send_containsBuddyMember(self, requestId, userMid):
method recv_containsBuddyMember (line 3125) | def recv_containsBuddyMember(self):
method downloadMessageContent (line 3142) | def downloadMessageContent(self, requestId, messageId):
method send_downloadMessageContent (line 3151) | def send_downloadMessageContent(self, requestId, messageId):
method recv_downloadMessageContent (line 3160) | def recv_downloadMessageContent(self):
method downloadMessageContentPreview (line 3177) | def downloadMessageContentPreview(self, requestId, messageId):
method send_downloadMessageContentPreview (line 3186) | def send_downloadMessageContentPreview(self, requestId, messageId):
method recv_downloadMessageContentPreview (line 3195) | def recv_downloadMessageContentPreview(self):
method downloadProfileImage (line 3212) | def downloadProfileImage(self, requestId):
method send_downloadProfileImage (line 3220) | def send_downloadProfileImage(self, requestId):
method recv_downloadProfileImage (line 3228) | def recv_downloadProfileImage(self):
method downloadProfileImagePreview (line 3245) | def downloadProfileImagePreview(self, requestId):
method send_downloadProfileImagePreview (line 3253) | def send_downloadProfileImagePreview(self, requestId):
method recv_downloadProfileImagePreview (line 3261) | def recv_downloadProfileImagePreview(self):
method getActiveMemberCountByBuddyMid (line 3278) | def getActiveMemberCountByBuddyMid(self, buddyMid):
method send_getActiveMemberCountByBuddyMid (line 3286) | def send_getActiveMemberCountByBuddyMid(self, buddyMid):
method recv_getActiveMemberCountByBuddyMid (line 3294) | def recv_getActiveMemberCountByBuddyMid(self):
method getActiveMemberMidsByBuddyMid (line 3311) | def getActiveMemberMidsByBuddyMid(self, buddyMid):
method send_getActiveMemberMidsByBuddyMid (line 3319) | def send_getActiveMemberMidsByBuddyMid(self, buddyMid):
method recv_getActiveMemberMidsByBuddyMid (line 3327) | def recv_getActiveMemberMidsByBuddyMid(self):
method getAllBuddyMembers (line 3344) | def getAllBuddyMembers(self):
method send_getAllBuddyMembers (line 3348) | def send_getAllBuddyMembers(self):
method recv_getAllBuddyMembers (line 3355) | def recv_getAllBuddyMembers(self):
method getBlockedBuddyMembers (line 3372) | def getBlockedBuddyMembers(self):
method send_getBlockedBuddyMembers (line 3376) | def send_getBlockedBuddyMembers(self):
method recv_getBlockedBuddyMembers (line 3383) | def recv_getBlockedBuddyMembers(self):
method getBlockerCountByBuddyMid (line 3400) | def getBlockerCountByBuddyMid(self, buddyMid):
method send_getBlockerCountByBuddyMid (line 3408) | def send_getBlockerCountByBuddyMid(self, buddyMid):
method recv_getBlockerCountByBuddyMid (line 3416) | def recv_getBlockerCountByBuddyMid(self):
method getBuddyDetailByMid (line 3433) | def getBuddyDetailByMid(self, buddyMid):
method send_getBuddyDetailByMid (line 3441) | def send_getBuddyDetailByMid(self, buddyMid):
method recv_getBuddyDetailByMid (line 3449) | def recv_getBuddyDetailByMid(self):
method getBuddyProfile (line 3466) | def getBuddyProfile(self):
method send_getBuddyProfile (line 3470) | def send_getBuddyProfile(self):
method recv_getBuddyProfile (line 3477) | def recv_getBuddyProfile(self):
method getContactTicket (line 3494) | def getContactTicket(self):
method send_getContactTicket (line 3498) | def send_getContactTicket(self):
method recv_getContactTicket (line 3505) | def recv_getContactTicket(self):
method getMemberCountByBuddyMid (line 3522) | def getMemberCountByBuddyMid(self, buddyMid):
method send_getMemberCountByBuddyMid (line 3530) | def send_getMemberCountByBuddyMid(self, buddyMid):
method recv_getMemberCountByBuddyMid (line 3538) | def recv_getMemberCountByBuddyMid(self):
method getSendBuddyMessageResult (line 3555) | def getSendBuddyMessageResult(self, sendBuddyMessageRequestId):
method send_getSendBuddyMessageResult (line 3563) | def send_getSendBuddyMessageResult(self, sendBuddyMessageRequestId):
method recv_getSendBuddyMessageResult (line 3571) | def recv_getSendBuddyMessageResult(self):
method getSetBuddyOnAirResult (line 3588) | def getSetBuddyOnAirResult(self, setBuddyOnAirRequestId):
method send_getSetBuddyOnAirResult (line 3596) | def send_getSetBuddyOnAirResult(self, setBuddyOnAirRequestId):
method recv_getSetBuddyOnAirResult (line 3604) | def recv_getSetBuddyOnAirResult(self):
method getUpdateBuddyProfileResult (line 3621) | def getUpdateBuddyProfileResult(self, updateBuddyProfileRequestId):
method send_getUpdateBuddyProfileResult (line 3629) | def send_getUpdateBuddyProfileResult(self, updateBuddyProfileRequestId):
method recv_getUpdateBuddyProfileResult (line 3637) | def recv_getUpdateBuddyProfileResult(self):
method isBuddyOnAirByMid (line 3654) | def isBuddyOnAirByMid(self, buddyMid):
method send_isBuddyOnAirByMid (line 3662) | def send_isBuddyOnAirByMid(self, buddyMid):
method recv_isBuddyOnAirByMid (line 3670) | def recv_isBuddyOnAirByMid(self):
method linkAndSendBuddyContentMessageToAllAsync (line 3687) | def linkAndSendBuddyContentMessageToAllAsync(self, requestId, msg, sou...
method send_linkAndSendBuddyContentMessageToAllAsync (line 3697) | def send_linkAndSendBuddyContentMessageToAllAsync(self, requestId, msg...
method recv_linkAndSendBuddyContentMessageToAllAsync (line 3707) | def recv_linkAndSendBuddyContentMessageToAllAsync(self):
method linkAndSendBuddyContentMessageTomids (line 3724) | def linkAndSendBuddyContentMessageTomids(self, requestId, msg, sourceC...
method send_linkAndSendBuddyContentMessageTomids (line 3735) | def send_linkAndSendBuddyContentMessageTomids(self, requestId, msg, so...
method recv_linkAndSendBuddyContentMessageTomids (line 3746) | def recv_linkAndSendBuddyContentMessageTomids(self):
method notifyBuddyBlocked (line 3763) | def notifyBuddyBlocked(self, buddyMid, blockerMid):
method send_notifyBuddyBlocked (line 3772) | def send_notifyBuddyBlocked(self, buddyMid, blockerMid):
method recv_notifyBuddyBlocked (line 3781) | def recv_notifyBuddyBlocked(self):
method notifyBuddyUnblocked (line 3796) | def notifyBuddyUnblocked(self, buddyMid, blockerMid):
method send_notifyBuddyUnblocked (line 3805) | def send_notifyBuddyUnblocked(self, buddyMid, blockerMid):
method recv_notifyBuddyUnblocked (line 3814) | def recv_notifyBuddyUnblocked(self):
method registerBuddy (line 3829) | def registerBuddy(self, buddyId, searchId, displayName, statusMeessage...
method send_registerBuddy (line 3842) | def send_registerBuddy(self, buddyId, searchId, displayName, statusMee...
method recv_registerBuddy (line 3855) | def recv_registerBuddy(self):
method registerBuddyAdmin (line 3872) | def registerBuddyAdmin(self, buddyId, searchId, displayName, statusMes...
method send_registerBuddyAdmin (line 3884) | def send_registerBuddyAdmin(self, buddyId, searchId, displayName, stat...
method recv_registerBuddyAdmin (line 3896) | def recv_registerBuddyAdmin(self):
method reissueContactTicket (line 3913) | def reissueContactTicket(self, expirationTime, maxUseCount):
method send_reissueContactTicket (line 3922) | def send_reissueContactTicket(self, expirationTime, maxUseCount):
method recv_reissueContactTicket (line 3931) | def recv_reissueContactTicket(self):
method removeBuddyMember (line 3948) | def removeBuddyMember(self, requestId, userMid):
method send_removeBuddyMember (line 3957) | def send_removeBuddyMember(self, requestId, userMid):
method recv_removeBuddyMember (line 3966) | def recv_removeBuddyMember(self):
method removeBuddyMembers (line 3981) | def removeBuddyMembers(self, requestId, userMids):
method send_removeBuddyMembers (line 3990) | def send_removeBuddyMembers(self, requestId, userMids):
method recv_removeBuddyMembers (line 3999) | def recv_removeBuddyMembers(self):
method sendBuddyContentMessageToAll (line 4014) | def sendBuddyContentMessageToAll(self, requestId, msg, content):
method send_sendBuddyContentMessageToAll (line 4024) | def send_sendBuddyContentMessageToAll(self, requestId, msg, content):
method recv_sendBuddyContentMessageToAll (line 4034) | def recv_sendBuddyContentMessageToAll(self):
method sendBuddyContentMessageToAllAsync (line 4051) | def sendBuddyContentMessageToAllAsync(self, requestId, msg, content):
method send_sendBuddyContentMessageToAllAsync (line 4061) | def send_sendBuddyContentMessageToAllAsync(self, requestId, msg, conte...
method recv_sendBuddyContentMessageToAllAsync (line 4071) | def recv_sendBuddyContentMessageToAllAsync(self):
method sendBuddyContentMessageTomids (line 4088) | def sendBuddyContentMessageTomids(self, requestId, msg, content, mids):
method send_sendBuddyContentMessageTomids (line 4099) | def send_sendBuddyContentMessageTomids(self, requestId, msg, content, ...
method recv_sendBuddyContentMessageTomids (line 4110) | def recv_sendBuddyContentMessageTomids(self):
method sendBuddyContentMessageTomidsAsync (line 4127) | def sendBuddyContentMessageTomidsAsync(self, requestId, msg, content, ...
method send_sendBuddyContentMessageTomidsAsync (line 4138) | def send_sendBuddyContentMessageTomidsAsync(self, requestId, msg, cont...
method recv_sendBuddyContentMessageTomidsAsync (line 4149) | def recv_sendBuddyContentMessageTomidsAsync(self):
method sendBuddyMessageToAll (line 4166) | def sendBuddyMessageToAll(self, requestId, msg):
method send_sendBuddyMessageToAll (line 4175) | def send_sendBuddyMessageToAll(self, requestId, msg):
method recv_sendBuddyMessageToAll (line 4184) | def recv_sendBuddyMessageToAll(self):
method sendBuddyMessageToAllAsync (line 4201) | def sendBuddyMessageToAllAsync(self, requestId, msg):
method send_sendBuddyMessageToAllAsync (line 4210) | def send_sendBuddyMessageToAllAsync(self, requestId, msg):
method recv_sendBuddyMessageToAllAsync (line 4219) | def recv_sendBuddyMessageToAllAsync(self):
method sendBuddyMessageTomids (line 4236) | def sendBuddyMessageTomids(self, requestId, msg, mids):
method send_sendBuddyMessageTomids (line 4246) | def send_sendBuddyMessageTomids(self, requestId, msg, mids):
method recv_sendBuddyMessageTomids (line 4256) | def recv_sendBuddyMessageTomids(self):
method sendBuddyMessageTomidsAsync (line 4273) | def sendBuddyMessageTomidsAsync(self, requestId, msg, mids):
method send_sendBuddyMessageTomidsAsync (line 4283) | def send_sendBuddyMessageTomidsAsync(self, requestId, msg, mids):
method recv_sendBuddyMessageTomidsAsync (line 4293) | def recv_sendBuddyMessageTomidsAsync(self):
method sendIndividualEventToAllAsync (line 4310) | def sendIndividualEventToAllAsync(self, requestId, buddyMid, notificat...
method send_sendIndividualEventToAllAsync (line 4320) | def send_sendIndividualEventToAllAsync(self, requestId, buddyMid, noti...
method recv_sendIndividualEventToAllAsync (line 4330) | def recv_sendIndividualEventToAllAsync(self):
method setBuddyOnAir (line 4345) | def setBuddyOnAir(self, requestId, onAir):
method send_setBuddyOnAir (line 4354) | def send_setBuddyOnAir(self, requestId, onAir):
method recv_setBuddyOnAir (line 4363) | def recv_setBuddyOnAir(self):
method setBuddyOnAirAsync (line 4380) | def setBuddyOnAirAsync(self, requestId, onAir):
method send_setBuddyOnAirAsync (line 4389) | def send_setBuddyOnAirAsync(self, requestId, onAir):
method recv_setBuddyOnAirAsync (line 4398) | def recv_setBuddyOnAirAsync(self):
method storeMessage (line 4415) | def storeMessage(self, requestId, messageRequest):
method send_storeMessage (line 4424) | def send_storeMessage(self, requestId, messageRequest):
method recv_storeMessage (line 4433) | def recv_storeMessage(self):
method unblockBuddyMember (line 4450) | def unblockBuddyMember(self, requestId, mid):
method send_unblockBuddyMember (line 4459) | def send_unblockBuddyMember(self, requestId, mid):
method recv_unblockBuddyMember (line 4468) | def recv_unblockBuddyMember(self):
method unregisterBuddy (line 4483) | def unregisterBuddy(self, requestId):
method send_unregisterBuddy (line 4491) | def send_unregisterBuddy(self, requestId):
method recv_unregisterBuddy (line 4499) | def recv_unregisterBuddy(self):
method unregisterBuddyAdmin (line 4514) | def unregisterBuddyAdmin(self, requestId):
method send_unregisterBuddyAdmin (line 4522) | def send_unregisterBuddyAdmin(self, requestId):
method recv_unregisterBuddyAdmin (line 4530) | def recv_unregisterBuddyAdmin(self):
method updateBuddyAdminProfileAttribute (line 4545) | def updateBuddyAdminProfileAttribute(self, requestId, attributes):
method send_updateBuddyAdminProfileAttribute (line 4554) | def send_updateBuddyAdminProfileAttribute(self, requestId, attributes):
method recv_updateBuddyAdminProfileAttribute (line 4563) | def recv_updateBuddyAdminProfileAttribute(self):
method updateBuddyAdminProfileImage (line 4578) | def updateBuddyAdminProfileImage(self, requestId, picture):
method send_updateBuddyAdminProfileImage (line 4587) | def send_updateBuddyAdminProfileImage(self, requestId, picture):
method recv_updateBuddyAdminProfileImage (line 4596) | def recv_updateBuddyAdminProfileImage(self):
method updateBuddyProfileAttributes (line 4611) | def updateBuddyProfileAttributes(self, requestId, attributes):
method send_updateBuddyProfileAttributes (line 4620) | def send_updateBuddyProfileAttributes(self, requestId, attributes):
method recv_updateBuddyProfileAttributes (line 4629) | def recv_updateBuddyProfileAttributes(self):
method updateBuddyProfileAttributesAsync (line 4646) | def updateBuddyProfileAttributesAsync(self, requestId, attributes):
method send_updateBuddyProfileAttributesAsync (line 4655) | def send_updateBuddyProfileAttributesAsync(self, requestId, attributes):
method recv_updateBuddyProfileAttributesAsync (line 4664) | def recv_updateBuddyProfileAttributesAsync(self):
method updateBuddyProfileImage (line 4681) | def updateBuddyProfileImage(self, requestId, image):
method send_updateBuddyProfileImage (line 4690) | def send_updateBuddyProfileImage(self, requestId, image):
method recv_updateBuddyProfileImage (line 4699) | def recv_updateBuddyProfileImage(self):
method updateBuddyProfileImageAsync (line 4716) | def updateBuddyProfileImageAsync(self, requestId, image):
method send_updateBuddyProfileImageAsync (line 4725) | def send_updateBuddyProfileImageAsync(self, requestId, image):
method recv_updateBuddyProfileImageAsync (line 4734) | def recv_updateBuddyProfileImageAsync(self):
method updateBuddySearchId (line 4751) | def updateBuddySearchId(self, requestId, searchId):
method send_updateBuddySearchId (line 4760) | def send_updateBuddySearchId(self, requestId, searchId):
method recv_updateBuddySearchId (line 4769) | def recv_updateBuddySearchId(self):
method updateBuddySettings (line 4784) | def updateBuddySettings(self, settings):
method send_updateBuddySettings (line 4792) | def send_updateBuddySettings(self, settings):
method recv_updateBuddySettings (line 4800) | def recv_updateBuddySettings(self):
method uploadBuddyContent (line 4815) | def uploadBuddyContent(self, contentType, content):
method send_uploadBuddyContent (line 4824) | def send_uploadBuddyContent(self, contentType, content):
method recv_uploadBuddyContent (line 4833) | def recv_uploadBuddyContent(self):
method findBuddyContactsByQuery (line 4850) | def findBuddyContactsByQuery(self, language, country, query, fromIndex...
method send_findBuddyContactsByQuery (line 4863) | def send_findBuddyContactsByQuery(self, language, country, query, from...
method recv_findBuddyContactsByQuery (line 4876) | def recv_findBuddyContactsByQuery(self):
method getBuddyContacts (line 4893) | def getBuddyContacts(self, language, country, classification, fromInde...
method send_getBuddyContacts (line 4905) | def send_getBuddyContacts(self, language, country, classification, fro...
method recv_getBuddyContacts (line 4917) | def recv_getBuddyContacts(self):
method getBuddyDetail (line 4934) | def getBuddyDetail(self, buddyMid):
method send_getBuddyDetail (line 4942) | def send_getBuddyDetail(self, buddyMid):
method recv_getBuddyDetail (line 4950) | def recv_getBuddyDetail(self):
method getBuddyOnAir (line 4967) | def getBuddyOnAir(self, buddyMid):
method send_getBuddyOnAir (line 4975) | def send_getBuddyOnAir(self, buddyMid):
method recv_getBuddyOnAir (line 4983) | def recv_getBuddyOnAir(self):
method getCountriesHavingBuddy (line 5000) | def getCountriesHavingBuddy(self):
method send_getCountriesHavingBuddy (line 5004) | def send_getCountriesHavingBuddy(self):
method recv_getCountriesHavingBuddy (line 5011) | def recv_getCountriesHavingBuddy(self):
method getNewlyReleasedBuddyIds (line 5028) | def getNewlyReleasedBuddyIds(self, country):
method send_getNewlyReleasedBuddyIds (line 5036) | def send_getNewlyReleasedBuddyIds(self, country):
method recv_getNewlyReleasedBuddyIds (line 5044) | def recv_getNewlyReleasedBuddyIds(self):
method getPopularBuddyBanner (line 5061) | def getPopularBuddyBanner(self, language, country, applicationType, re...
method send_getPopularBuddyBanner (line 5072) | def send_getPopularBuddyBanner(self, language, country, applicationTyp...
method recv_getPopularBuddyBanner (line 5083) | def recv_getPopularBuddyBanner(self):
method getPopularBuddyLists (line 5100) | def getPopularBuddyLists(self, language, country):
method send_getPopularBuddyLists (line 5109) | def send_getPopularBuddyLists(self, language, country):
method recv_getPopularBuddyLists (line 5118) | def recv_getPopularBuddyLists(self):
method getPromotedBuddyContacts (line 5135) | def getPromotedBuddyContacts(self, language, country):
method send_getPromotedBuddyContacts (line 5144) | def send_getPromotedBuddyContacts(self, language, country):
method recv_getPromotedBuddyContacts (line 5153) | def recv_getPromotedBuddyContacts(self):
method activeBuddySubscriberCount (line 5170) | def activeBuddySubscriberCount(self):
method send_activeBuddySubscriberCount (line 5174) | def send_activeBuddySubscriberCount(self):
method recv_activeBuddySubscriberCount (line 5181) | def recv_activeBuddySubscriberCount(self):
method addOperationForChannel (line 5198) | def addOperationForChannel(self, opType, param1, param2, param3):
method send_addOperationForChannel (line 5209) | def send_addOperationForChannel(self, opType, param1, param2, param3):
method recv_addOperationForChannel (line 5220) | def recv_addOperationForChannel(self):
method displayBuddySubscriberCount (line 5235) | def displayBuddySubscriberCount(self):
method send_displayBuddySubscriberCount (line 5239) | def send_displayBuddySubscriberCount(self):
method recv_displayBuddySubscriberCount (line 5246) | def recv_displayBuddySubscriberCount(self):
method findContactByUseridWithoutAbuseBlockForChannel (line 5263) | def findContactByUseridWithoutAbuseBlockForChannel(self, userid):
method send_findContactByUseridWithoutAbuseBlockForChannel (line 5271) | def send_findContactByUseridWithoutAbuseBlockForChannel(self, userid):
method recv_findContactByUseridWithoutAbuseBlockForChannel (line 5279) | def recv_findContactByUseridWithoutAbuseBlockForChannel(self):
method getAllContactIdsForChannel (line 5296) | def getAllContactIdsForChannel(self):
method send_getAllContactIdsForChannel (line 5300) | def send_getAllContactIdsForChannel(self):
method recv_getAllContactIdsForChannel (line 5307) | def recv_getAllContactIdsForChannel(self):
method getCompactContacts (line 5324) | def getCompactContacts(self, lastModifiedTimestamp):
method send_getCompactContacts (line 5332) | def send_getCompactContacts(self, lastModifiedTimestamp):
method recv_getCompactContacts (line 5340) | def recv_getCompactContacts(self):
method getContactsForChannel (line 5357) | def getContactsForChannel(self, ids):
method send_getContactsForChannel (line 5365) | def send_getContactsForChannel(self, ids):
method recv_getContactsForChannel (line 5373) | def recv_getContactsForChannel(self):
method getDisplayName (line 5390) | def getDisplayName(self, mid):
method send_getDisplayName (line 5398) | def send_getDisplayName(self, mid):
method recv_getDisplayName (line 5406) | def recv_getDisplayName(self):
method getFavoriteMidsForChannel (line 5423) | def getFavoriteMidsForChannel(self):
method send_getFavoriteMidsForChannel (line 5427) | def send_getFavoriteMidsForChannel(self):
method recv_getFavoriteMidsForChannel (line 5434) | def recv_getFavoriteMidsForChannel(self):
method getFriendMids (line 5451) | def getFriendMids(self):
method send_getFriendMids (line 5455) | def send_getFriendMids(self):
method recv_getFriendMids (line 5462) | def recv_getFriendMids(self):
method getGroupMemberMids (line 5479) | def getGroupMemberMids(self, groupId):
method send_getGroupMemberMids (line 5487) | def send_getGroupMemberMids(self, groupId):
method recv_getGroupMemberMids (line 5495) | def recv_getGroupMemberMids(self):
method getGroupsForChannel (line 5512) | def getGroupsForChannel(self, groupIds):
method send_getGroupsForChannel (line 5520) | def send_getGroupsForChannel(self, groupIds):
method recv_getGroupsForChannel (line 5528) | def recv_getGroupsForChannel(self):
method getIdentityCredential (line 5545) | def getIdentityCredential(self):
method send_getIdentityCredential (line 5549) | def send_getIdentityCredential(self):
method recv_getIdentityCredential (line 5556) | def recv_getIdentityCredential(self):
method getJoinedGroupIdsForChannel (line 5573) | def getJoinedGroupIdsForChannel(self):
method send_getJoinedGroupIdsForChannel (line 5577) | def send_getJoinedGroupIdsForChannel(self):
method recv_getJoinedGroupIdsForChannel (line 5584) | def recv_getJoinedGroupIdsForChannel(self):
method getMetaProfile (line 5601) | def getMetaProfile(self):
method send_getMetaProfile (line 5605) | def send_getMetaProfile(self):
method recv_getMetaProfile (line 5612) | def recv_getMetaProfile(self):
method getMid (line 5629) | def getMid(self):
method send_getMid (line 5633) | def send_getMid(self):
method recv_getMid (line 5640) | def recv_getMid(self):
method getPrimaryClientForChannel (line 5657) | def getPrimaryClientForChannel(self):
method send_getPrimaryClientForChannel (line 5661) | def send_getPrimaryClientForChannel(self):
method recv_getPrimaryClientForChannel (line 5668) | def recv_getPrimaryClientForChannel(self):
method getProfileForChannel (line 5685) | def getProfileForChannel(self):
method send_getProfileForChannel (line 5689) | def send_getProfileForChannel(self):
method recv_getProfileForChannel (line 5696) | def recv_getProfileForChannel(self):
method getSimpleChannelContacts (line 5713) | def getSimpleChannelContacts(self, ids):
method send_getSimpleChannelContacts (line 5721) | def send_getSimpleChannelContacts(self, ids):
method recv_getSimpleChannelContacts (line 5729) | def recv_getSimpleChannelContacts(self):
method getUserCountryForBilling (line 5746) | def getUserCountryForBilling(self, country, remoteIp):
method send_getUserCountryForBilling (line 5755) | def send_getUserCountryForBilling(self, country, remoteIp):
method recv_getUserCountryForBilling (line 5764) | def recv_getUserCountryForBilling(self):
method getUserCreateTime (line 5781) | def getUserCreateTime(self):
method send_getUserCreateTime (line 5785) | def send_getUserCreateTime(self):
method recv_getUserCreateTime (line 5792) | def recv_getUserCreateTime(self):
method getUserIdentities (line 5809) | def getUserIdentities(self):
method send_getUserIdentities (line 5813) | def send_getUserIdentities(self):
method recv_getUserIdentities (line 5820) | def recv_getUserIdentities(self):
method getUserLanguage (line 5837) | def getUserLanguage(self):
method send_getUserLanguage (line 5841) | def send_getUserLanguage(self):
method recv_getUserLanguage (line 5848) | def recv_getUserLanguage(self):
method getUserMidsWhoAddedMe (line 5865) | def getUserMidsWhoAddedMe(self):
method send_getUserMidsWhoAddedMe (line 5869) | def send_getUserMidsWhoAddedMe(self):
method recv_getUserMidsWhoAddedMe (line 5876) | def recv_getUserMidsWhoAddedMe(self):
method isGroupMember (line 5893) | def isGroupMember(self, groupId):
method send_isGroupMember (line 5901) | def send_isGroupMember(self, groupId):
method recv_isGroupMember (line 5909) | def recv_isGroupMember(self):
method isInContact (line 5926) | def isInContact(self, mid):
method send_isInContact (line 5934) | def send_isInContact(self, mid):
method recv_isInContact (line 5942) | def recv_isInContact(self):
method registerChannelCP (line 5959) | def registerChannelCP(self, cpId, registerPassword):
method send_registerChannelCP (line 5968) | def send_registerChannelCP(self, cpId, registerPassword):
method recv_registerChannelCP (line 5977) | def recv_registerChannelCP(self):
method removeNotificationStatus (line 5994) | def removeNotificationStatus(self, notificationStatus):
method send_removeNotificationStatus (line 6002) | def send_removeNotificationStatus(self, notificationStatus):
method recv_removeNotificationStatus (line 6010) | def recv_removeNotificationStatus(self):
method sendMessageForChannel (line 6025) | def sendMessageForChannel(self, message):
method send_sendMessageForChannel (line 6033) | def send_sendMessageForChannel(self, message):
method recv_sendMessageForChannel (line 6041) | def recv_sendMessageForChannel(self):
method sendPinCodeOperation (line 6058) | def sendPinCodeOperation(self, verifier):
method send_sendPinCodeOperation (line 6066) | def send_sendPinCodeOperation(self, verifier):
method recv_sendPinCodeOperation (line 6074) | def recv_sendPinCodeOperation(self):
method updateProfileAttributeForChannel (line 6089) | def updateProfileAttributeForChannel(self, profileAttribute, value):
method send_updateProfileAttributeForChannel (line 6098) | def send_updateProfileAttributeForChannel(self, profileAttribute, value):
method recv_updateProfileAttributeForChannel (line 6107) | def recv_updateProfileAttributeForChannel(self):
method approveChannelAndIssueChannelToken (line 6122) | def approveChannelAndIssueChannelToken(self, channelId):
method send_approveChannelAndIssueChannelToken (line 6130) | def send_approveChannelAndIssueChannelToken(self, channelId):
method recv_approveChannelAndIssueChannelToken (line 6138) | def recv_approveChannelAndIssueChannelToken(self):
method approveChannelAndIssueRequestToken (line 6155) | def approveChannelAndIssueRequestToken(self, channelId, otpId):
method send_approveChannelAndIssueRequestToken (line 6164) | def send_approveChannelAndIssueRequestToken(self, channelId, otpId):
method recv_approveChannelAndIssueRequestToken (line 6173) | def recv_approveChannelAndIssueRequestToken(self):
method fetchNotificationItems (line 6190) | def fetchNotificationItems(self, localRev):
method send_fetchNotificationItems (line 6198) | def send_fetchNotificationItems(self, localRev):
method recv_fetchNotificationItems (line 6206) | def recv_fetchNotificationItems(self):
method getApprovedChannels (line 6223) | def getApprovedChannels(self, lastSynced, locale):
method send_getApprovedChannels (line 6232) | def send_getApprovedChannels(self, lastSynced, locale):
method recv_getApprovedChannels (line 6241) | def recv_getApprovedChannels(self):
method getChannelInfo (line 6258) | def getChannelInfo(self, channelId, locale):
method send_getChannelInfo (line 6267) | def send_getChannelInfo(self, channelId, locale):
method recv_getChannelInfo (line 6276) | def recv_getChannelInfo(self):
method getChannelNotificationSetting (line 6293) | def getChannelNotificationSetting(self, channelId, locale):
method send_getChannelNotificationSetting (line 6302) | def send_getChannelNotificationSetting(self, channelId, locale):
method recv_getChannelNotificationSetting (line 6311) | def recv_getChannelNotificationSetting(self):
method getChannelNotificationSettings (line 6328) | def getChannelNotificationSettings(self, locale):
method send_getChannelNotificationSettings (line 6336) | def send_getChannelNotificationSettings(self, locale):
method recv_getChannelNotificationSettings (line 6344) | def recv_getChannelNotificationSettings(self):
method getChannels (line 6361) | def getChannels(self, lastSynced, locale):
method send_getChannels (line 6370) | def send_getChannels(self, lastSynced, locale):
method recv_getChannels (line 6379) | def recv_getChannels(self):
method getDomains (line 6396) | def getDomains(self, lastSynced):
method send_getDomains (line 6404) | def send_getDomains(self, lastSynced):
method recv_getDomains (line 6412) | def recv_getDomains(self):
method getFriendChannelMatrices (line 6429) | def getFriendChannelMatrices(self, channelIds):
method send_getFriendChannelMatrices (line 6437) | def send_getFriendChannelMatrices(self, channelIds):
method recv_getFriendChannelMatrices (line 6445) | def recv_getFriendChannelMatrices(self):
method getNotificationBadgeCount (line 6462) | def getNotificationBadgeCount(self, localRev):
method send_getNotificationBadgeCount (line 6470) | def send_getNotificationBadgeCount(self, localRev):
method recv_getNotificationBadgeCount (line 6478) | def recv_getNotificationBadgeCount(self):
method issueChannelToken (line 6495) | def issueChannelToken(self, channelId):
method send_issueChannelToken (line 6503) | def send_issueChannelToken(self, channelId):
method recv_issueChannelToken (line 6511) | def recv_issueChannelToken(self):
method issueRequestToken (line 6528) | def issueRequestToken(self, channelId, otpId):
method send_issueRequestToken (line 6537) | def send_issueRequestToken(self, channelId, otpId):
method recv_issueRequestToken (line 6546) | def recv_issueRequestToken(self):
method issueRequestTokenWithAuthScheme (line 6563) | def issueRequestTokenWithAuthScheme(self, channelId, otpId, authScheme...
method send_issueRequestTokenWithAuthScheme (line 6574) | def send_issueRequestTokenWithAuthScheme(self, channelId, otpId, authS...
method recv_issueRequestTokenWithAuthScheme (line 6585) | def recv_issueRequestTokenWithAuthScheme(self):
method reserveCoinUse (line 6602) | def reserveCoinUse(self, request, locale):
method send_reserveCoinUse (line 6611) | def send_reserveCoinUse(self, request, locale):
method recv_reserveCoinUse (line 6620) | def recv_reserveCoinUse(self):
method revokeChannel (line 6637) | def revokeChannel(self, channelId):
method send_revokeChannel (line 6645) | def send_revokeChannel(self, channelId):
method recv_revokeChannel (line 6653) | def recv_revokeChannel(self):
method syncChannelData (line 6668) | def syncChannelData(self, lastSynced, locale):
method send_syncChannelData (line 6677) | def send_syncChannelData(self, lastSynced, locale):
method recv_syncChannelData (line 6686) | def recv_syncChannelData(self):
method updateChannelNotificationSetting (line 6703) | def updateChannelNotificationSetting(self, setting):
method send_updateChannelNotificationSetting (line 6711) | def send_updateChannelNotificationSetting(self, setting):
method recv_updateChannelNotificationSetting (line 6719) | def recv_updateChannelNotificationSetting(self):
method fetchMessageOperations (line 6734) | def fetchMessageOperations(self, localRevision, lastOpTimestamp, count):
method send_fetchMessageOperations (line 6744) | def send_fetchMessageOperations(self, localRevision, lastOpTimestamp, ...
method recv_fetchMessageOperations (line 6754) | def recv_fetchMessageOperations(self):
method getLastReadMessageIds (line 6771) | def getLastReadMessageIds(self, chatId):
method send_getLastReadMessageIds (line 6779) | def send_getLastReadMessageIds(self, chatId):
method recv_getLastReadMessageIds (line 6787) | def recv_getLastReadMessageIds(self):
method multiGetLastReadMessageIds (line 6804) | def multiGetLastReadMessageIds(self, chatIds):
method send_multiGetLastReadMessageIds (line 6812) | def send_multiGetLastReadMessageIds(self, chatIds):
method recv_multiGetLastReadMessageIds (line 6820) | def recv_multiGetLastReadMessageIds(self):
method buyCoinProduct (line 6837) | def buyCoinProduct(self, paymentReservation):
method send_buyCoinProduct (line 6845) | def send_buyCoinProduct(self, paymentReservation):
method recv_buyCoinProduct (line 6853) | def recv_buyCoinProduct(self):
method buyFreeProduct (line 6868) | def buyFreeProduct(self, receiverMid, productId, messageTemplate, lang...
method send_buyFreeProduct (line 6881) | def send_buyFreeProduct(self, receiverMid, productId, messageTemplate,...
method recv_buyFreeProduct (line 6894) | def recv_buyFreeProduct(self):
method buyMustbuyProduct (line 6909) | def buyMustbuyProduct(self, receiverMid, productId, messageTemplate, l...
method send_buyMustbuyProduct (line 6923) | def send_buyMustbuyProduct(self, receiverMid, productId, messageTempla...
method recv_buyMustbuyProduct (line 6937) | def recv_buyMustbuyProduct(self):
method checkCanReceivePresent (line 6952) | def checkCanReceivePresent(self, recipientMid, packageId, language, co...
method send_checkCanReceivePresent (line 6963) | def send_checkCanReceivePresent(self, recipientMid, packageId, languag...
method recv_checkCanReceivePresent (line 6974) | def recv_checkCanReceivePresent(self):
method getActivePurchases (line 6989) | def getActivePurchases(self, start, size, language, country):
method send_getActivePurchases (line 7000) | def send_getActivePurchases(self, start, size, language, country):
method recv_getActivePurchases (line 7011) | def recv_getActivePurchases(self):
method getActivePurchaseVersions (line 7028) | def getActivePurchaseVersions(self, start, size, language, country):
method send_getActivePurchaseVersions (line 7039) | def send_getActivePurchaseVersions(self, start, size, language, country):
method recv_getActivePurchaseVersions (line 7050) | def recv_getActivePurchaseVersions(self):
method getCoinProducts (line 7067) | def getCoinProducts(self, appStoreCode, country, language):
method send_getCoinProducts (line 7077) | def send_getCoinProducts(self, appStoreCode, country, language):
method recv_getCoinProducts (line 7087) | def recv_getCoinProducts(self):
method getCoinProductsByPgCode (line 7104) | def getCoinProductsByPgCode(self, appStoreCode, pgCode, country, langu...
method send_getCoinProductsByPgCode (line 7115) | def send_getCoinProductsByPgCode(self, appStoreCode, pgCode, country, ...
method recv_getCoinProductsByPgCode (line 7126) | def recv_getCoinProductsByPgCode(self):
method getCoinPurchaseHistory (line 7143) | def getCoinPurchaseHistory(self, request):
method send_getCoinPurchaseHistory (line 7151) | def send_getCoinPurchaseHistory(self, request):
method recv_getCoinPurchaseHistory (line 7159) | def recv_getCoinPurchaseHistory(self):
method getCoinUseAndRefundHistory (line 7176) | def getCoinUseAndRefundHistory(self, request):
method send_getCoinUseAndRefundHistory (line 7184) | def send_getCoinUseAndRefundHistory(self, request):
method recv_getCoinUseAndRefundHistory (line 7192) | def recv_getCoinUseAndRefundHistory(self):
method getDownloads (line 7209) | def getDownloads(self, start, size, language, country):
method send_getDownloads (line 7220) | def send_getDownloads(self, start, size, language, country):
method recv_getDownloads (line 7231) | def recv_getDownloads(self):
method getEventPackages (line 7248) | def getEventPackages(self, start, size, language, country):
method send_getEventPackages (line 7259) | def send_getEventPackages(self, start, size, language, country):
method recv_getEventPackages (line 7270) | def recv_getEventPackages(self):
method getNewlyReleasedPackages (line 7287) | def getNewlyReleasedPackages(self, start, size, language, country):
method send_getNewlyReleasedPackages (line 7298) | def send_getNewlyReleasedPackages(self, start, size, language, country):
method recv_getNewlyReleasedPackages (line 7309) | def recv_getNewlyReleasedPackages(self):
method getPopularPackages (line 7326) | def getPopularPackages(self, start, size, language, country):
method send_getPopularPackages (line 7337) | def send_getPopularPackages(self, start, size, language, country):
method recv_getPopularPackages (line 7348) | def recv_getPopularPackages(self):
method getPresentsReceived (line 7365) | def getPresentsReceived(self, start, size, language, country):
method send_getPresentsReceived (line 7376) | def send_getPresentsReceived(self, start, size, language, country):
method recv_getPresentsReceived (line 7387) | def recv_getPresentsReceived(self):
method getPresentsSent (line 7404) | def getPresentsSent(self, start, size, language, country):
method send_getPresentsSent (line 7415) | def send_getPresentsSent(self, start, size, language, country):
method recv_getPresentsSent (line 7426) | def recv_getPresentsSent(self):
method getProduct (line 7443) | def getProduct(self, packageID, language, country):
method send_getProduct (line 7453) | def send_getProduct(self, packageID, language, country):
method recv_getProduct (line 7463) | def recv_getProduct(self):
method getProductList (line 7480) | def getProductList(self, productIdList, language, country):
method send_getProductList (line 7490) | def send_getProductList(self, productIdList, language, country):
method recv_getProductList (line 7500) | def recv_getProductList(self):
method getProductListWithCarrier (line 7517) | def getProductListWithCarrier(self, productIdList, language, country, ...
method send_getProductListWithCarrier (line 7528) | def send_getProductListWithCarrier(self, productIdList, language, coun...
method recv_getProductListWithCarrier (line 7539) | def recv_getProductListWithCarrier(self):
method getProductWithCarrier (line 7556) | def getProductWithCarrier(self, packageID, language, country, carrierC...
method send_getProductWithCarrier (line 7567) | def send_getProductWithCarrier(self, packageID, language, country, car...
method recv_getProductWithCarrier (line 7578) | def recv_getProductWithCarrier(self):
method getPurchaseHistory (line 7595) | def getPurchaseHistory(self, start, size, language, country):
method send_getPurchaseHistory (line 7606) | def send_getPurchaseHistory(self, start, size, language, country):
method recv_getPurchaseHistory (line 7617) | def recv_getPurchaseHistory(self):
method getTotalBalance (line 7634) | def getTotalBalance(self, appStoreCode):
method send_getTotalBalance (line 7642) | def send_getTotalBalance(self, appStoreCode):
method recv_getTotalBalance (line 7650) | def recv_getTotalBalance(self):
method notifyDownloaded (line 7667) | def notifyDownloaded(self, packageId, language):
method send_notifyDownloaded (line 7676) | def send_notifyDownloaded(self, packageId, language):
method recv_notifyDownloaded (line 7685) | def recv_notifyDownloaded(self):
method reserveCoinPurchase (line 7702) | def reserveCoinPurchase(self, request):
method send_reserveCoinPurchase (line 7710) | def send_reserveCoinPurchase(self, request):
method recv_reserveCoinPurchase (line 7718) | def recv_reserveCoinPurchase(self):
method reservePayment (line 7735) | def reservePayment(self, paymentReservation):
method send_reservePayment (line 7743) | def send_reservePayment(self, paymentReservation):
method recv_reservePayment (line 7751) | def recv_reservePayment(self):
method getSnsFriends (line 7768) | def getSnsFriends(self, snsIdType, snsAccessToken, startIdx, limit):
method send_getSnsFriends (line 7779) | def send_getSnsFriends(self, snsIdType, snsAccessToken, startIdx, limit):
method recv_getSnsFriends (line 7790) | def recv_getSnsFriends(self):
method getSnsMyProfile (line 7807) | def getSnsMyProfile(self, snsIdType, snsAccessToken):
method send_getSnsMyProfile (line 7816) | def send_getSnsMyProfile(self, snsIdType, snsAccessToken):
method recv_getSnsMyProfile (line 7825) | def recv_getSnsMyProfile(self):
method postSnsInvitationMessage (line 7842) | def postSnsInvitationMessage(self, snsIdType, snsAccessToken, toSnsUse...
method send_postSnsInvitationMessage (line 7852) | def send_postSnsInvitationMessage(self, snsIdType, snsAccessToken, toS...
method recv_postSnsInvitationMessage (line 7862) | def recv_postSnsInvitationMessage(self):
method acceptGroupInvitation (line 7877) | def acceptGroupInvitation(self, reqSeq, groupId):
method send_acceptGroupInvitation (line 7886) | def send_acceptGroupInvitation(self, reqSeq, groupId):
method recv_acceptGroupInvitation (line 7895) | def recv_acceptGroupInvitation(self):
method acceptGroupInvitationByTicket (line 7910) | def acceptGroupInvitationByTicket(self, reqSeq, groupId, ticketId):
method send_acceptGroupInvitationByTicket (line 7920) | def send_acceptGroupInvitationByTicket(self, reqSeq, groupId, ticketId):
method recv_acceptGroupInvitationByTicket (line 7930) | def recv_acceptGroupInvitationByTicket(self):
method acceptProximityMatches (line 7945) | def acceptProximityMatches(self, sessionId, ids):
method send_acceptProximityMatches (line 7954) | def send_acceptProximityMatches(self, sessionId, ids):
method recv_acceptProximityMatches (line 7963) | def recv_acceptProximityMatches(self):
method acquireCallRoute (line 7978) | def acquireCallRoute(self, to):
method send_acquireCallRoute (line 7986) | def send_acquireCallRoute(self, to):
method recv_acquireCallRoute (line 7994) | def recv_acquireCallRoute(self):
method acquireCallTicket (line 8011) | def acquireCallTicket(self, to):
method send_acquireCallTicket (line 8019) | def send_acquireCallTicket(self, to):
method recv_acquireCallTicket (line 8027) | def recv_acquireCallTicket(self):
method acquireEncryptedAccessToken (line 8044) | def acquireEncryptedAccessToken(self, featureType):
method send_acquireEncryptedAccessToken (line 8052) | def send_acquireEncryptedAccessToken(self, featureType):
method recv_acquireEncryptedAccessToken (line 8060) | def recv_acquireEncryptedAccessToken(self):
method addSnsId (line 8077) | def addSnsId(self, snsIdType, snsAccessToken):
method send_addSnsId (line 8086) | def send_addSnsId(self, snsIdType, snsAccessToken):
method recv_addSnsId (line 8095) | def recv_addSnsId(self):
method blockContact (line 8112) | def blockContact(self, reqSeq, id):
method send_blockContact (line 8121) | def send_blockContact(self, reqSeq, id):
method recv_blockContact (line 8130) | def recv_blockContact(self):
method blockRecommendation (line 8145) | def blockRecommendation(self, reqSeq, id):
method send_blockRecommendation (line 8154) | def send_blockRecommendation(self, reqSeq, id):
method recv_blockRecommendation (line 8163) | def recv_blockRecommendation(self):
method cancelGroupInvitation (line 8178) | def cancelGroupInvitation(self, reqSeq, groupId, contactIds):
method send_cancelGroupInvitation (line 8188) | def send_cancelGroupInvitation(self, reqSeq, groupId, contactIds):
method recv_cancelGroupInvitation (line 8198) | def recv_cancelGroupInvitation(self):
method changeVerificationMethod (line 8213) | def changeVerificationMethod(self, sessionId, method):
method send_changeVerificationMethod (line 8222) | def send_changeVerificationMethod(self, sessionId, method):
method recv_changeVerificationMethod (line 8231) | def recv_changeVerificationMethod(self):
method clearIdentityCredential (line 8248) | def clearIdentityCredential(self):
method send_clearIdentityCredential (line 8252) | def send_clearIdentityCredential(self):
method recv_clearIdentityCredential (line 8259) | def recv_clearIdentityCredential(self):
method clearMessageBox (line 8274) | def clearMessageBox(self, channelId, messageBoxId):
method send_clearMessageBox (line 8283) | def send_clearMessageBox(self, channelId, messageBoxId):
method recv_clearMessageBox (line 8292) | def recv_clearMessageBox(self):
method closeProximityMatch (line 8307) | def closeProximityMatch(self, sessionId):
method send_closeProximityMatch (line 8315) | def send_closeProximityMatch(self, sessionId):
method recv_closeProximityMatch (line 8323) | def recv_closeProximityMatch(self):
method commitSendMessage (line 8338) | def commitSendMessage(self, seq, messageId, receiverMids):
method send_commitSendMessage (line 8348) | def send_commitSendMessage(self, seq, messageId, receiverMids):
method recv_commitSendMessage (line 8358) | def recv_commitSendMessage(self):
method commitSendMessages (line 8375) | def commitSendMessages(self, seq, messageIds, receiverMids):
method send_commitSendMessages (line 8385) | def send_commitSendMessages(self, seq, messageIds, receiverMids):
method recv_commitSendMessages (line 8395) | def recv_commitSendMessages(self):
method commitUpdateProfile (line 8412) | def commitUpdateProfile(self, seq, attrs, receiverMids):
method send_commitUpdateProfile (line 8422) | def send_commitUpdateProfile(self, seq, attrs, receiverMids):
method recv_commitUpdateProfile (line 8432) | def recv_commitUpdateProfile(self):
method confirmEmail (line 8449) | def confirmEmail(self, verifier, pinCode):
method send_confirmEmail (line 8458) | def send_confirmEmail(self, verifier, pinCode):
method recv_confirmEmail (line 8467) | def recv_confirmEmail(self):
method createGroup (line 8482) | def createGroup(self, seq, name, contactIds):
method send_createGroup (line 8492) | def send_createGroup(self, seq, name, contactIds):
method recv_createGroup (line 8502) | def recv_createGroup(self):
method createQrcodeBase64Image (line 8519) | def createQrcodeBase64Image(self, url, characterSet, imageSize, x, y, ...
method send_createQrcodeBase64Image (line 8533) | def send_createQrcodeBase64Image(self, url, characterSet, imageSize, x...
method recv_createQrcodeBase64Image (line 8547) | def recv_createQrcodeBase64Image(self):
method createRoom (line 8564) | def createRoom(self, reqSeq, contactIds):
method send_createRoom (line 8573) | def send_createRoom(self, reqSeq, contactIds):
method recv_createRoom (line 8582) | def recv_createRoom(self):
method createSession (line 8599) | def createSession(self):
method send_createSession (line 8603) | def send_createSession(self):
method recv_createSession (line 8610) | def recv_createSession(self):
method fetchAnnouncements (line 8627) | def fetchAnnouncements(self, lastFetchedIndex):
method send_fetchAnnouncements (line 8635) | def send_fetchAnnouncements(self, lastFetchedIndex):
method recv_fetchAnnouncements (line 8643) | def recv_fetchAnnouncements(self):
method fetchMessages (line 8660) | def fetchMessages(self, localTs, count):
method send_fetchMessages (line 8669) | def send_fetchMessages(self, localTs, count):
method recv_fetchMessages (line 8678) | def recv_fetchMessages(self):
method fetchOperations (line 8695) | def fetchOperations(self, localRev, count):
method send_fetchOperations (line 8704) | def send_fetchOperations(self, localRev, count):
method recv_fetchOperations (line 8713) | def recv_fetchOperations(self):
method fetchOps (line 8730) | def fetchOps(self, localRev, count, globalRev, individualRev):
method send_fetchOps (line 8741) | def send_fetchOps(self, localRev, count, globalRev, individualRev):
method recv_fetchOps (line 8752) | def recv_fetchOps(self):
method findAndAddContactsByEmail (line 8769) | def findAndAddContactsByEmail(self, reqSeq, emails):
method send_findAndAddContactsByEmail (line 8778) | def send_findAndAddContactsByEmail(self, reqSeq, emails):
method recv_findAndAddContactsByEmail (line 8787) | def recv_findAndAddContactsByEmail(self):
method findAndAddContactsByMid (line 8804) | def findAndAddContactsByMid(self, reqSeq, mid):
method send_findAndAddContactsByMid (line 8813) | def send_findAndAddContactsByMid(self, reqSeq, mid):
method recv_findAndAddContactsByMid (line 8822) | def recv_findAndAddContactsByMid(self):
method findAndAddContactsByPhone (line 8839) | def findAndAddContactsByPhone(self, reqSeq, phones):
method send_findAndAddContactsByPhone (line 8848) | def send_findAndAddContactsByPhone(self, reqSeq, phones):
method recv_findAndAddContactsByPhone (line 8857) | def recv_findAndAddContactsByPhone(self):
method findAndAddContactsByUserid (line 8874) | def findAndAddContactsByUserid(self, reqSeq, userid):
method send_findAndAddContactsByUserid (line 8883) | def send_findAndAddContactsByUserid(self, reqSeq, userid):
method recv_findAndAddContactsByUserid (line 8892) | def recv_findAndAddContactsByUserid(self):
method findContactByUserid (line 8909) | def findContactByUserid(self, userid):
method send_findContactByUserid (line 8917) | def send_findContactByUserid(self, userid):
method recv_findContactByUserid (line 8925) | def recv_findContactByUserid(self):
method findContactByUserTicket (line 8942) | def findContactByUserTicket(self, ticketId):
method send_findContactByUserTicket (line 8950) | def send_findContactByUserTicket(self, ticketId):
method recv_findContactByUserTicket (line 8958) | def recv_findContactByUserTicket(self):
method findGroupByTicket (line 8975) | def findGroupByTicket(self, ticketId):
method send_findGroupByTicket (line 8983) | def send_findGroupByTicket(self, ticketId):
method recv_findGroupByTicket (line 8991) | def recv_findGroupByTicket(self):
method findContactsByEmail (line 9008) | def findContactsByEmail(self, emails):
method send_findContactsByEmail (line 9016) | def send_findContactsByEmail(self, emails):
method recv_findContactsByEmail (line 9024) | def recv_findContactsByEmail(self):
method findContactsByPhone (line 9041) | def findContactsByPhone(self, phones):
method send_findContactsByPhone (line 9049) | def send_findContactsByPhone(self, phones):
method recv_findContactsByPhone (line 9057) | def recv_findContactsByPhone(self):
method findSnsIdUserStatus (line 9074) | def findSnsIdUserStatus(self, snsIdType, snsAccessToken, udidHash):
method send_findSnsIdUserStatus (line 9084) | def send_findSnsIdUserStatus(self, snsIdType, snsAccessToken, udidHash):
method recv_findSnsIdUserStatus (line 9094) | def recv_findSnsIdUserStatus(self):
method finishUpdateVerification (line 9111) | def finishUpdateVerification(self, sessionId):
method send_finishUpdateVerification (line 9119) | def send_finishUpdateVerification(self, sessionId):
method recv_finishUpdateVerification (line 9127) | def recv_finishUpdateVerification(self):
method generateUserTicket (line 9142) | def generateUserTicket(self, expirationTime, maxUseCount):
method send_generateUserTicket (line 9151) | def send_generateUserTicket(self, expirationTime, maxUseCount):
method recv_generateUserTicket (line 9160) | def recv_generateUserTicket(self):
method getAcceptedProximityMatches (line 9177) | def getAcceptedProximityMatches(self, sessionId):
method send_getAcceptedProximityMatches (line 9185) | def send_getAcceptedProximityMatches(self, sessionId):
method recv_getAcceptedProximityMatches (line 9193) | def recv_getAcceptedProximityMatches(self):
method getActiveBuddySubscriberIds (line 9210) | def getActiveBuddySubscriberIds(self):
method send_getActiveBuddySubscriberIds (line 9214) | def send_getActiveBuddySubscriberIds(self):
method recv_getActiveBuddySubscriberIds (line 9221) | def recv_getActiveBuddySubscriberIds(self):
method getAllContactIds (line 9238) | def getAllContactIds(self):
method send_getAllContactIds (line 9242) | def send_getAllContactIds(self):
method recv_getAllContactIds (line 9249) | def recv_getAllContactIds(self):
method getAuthQrcode (line 9266) | def getAuthQrcode(self, keepLoggedIn, systemName):
method send_getAuthQrcode (line 9275) | def send_getAuthQrcode(self, keepLoggedIn, systemName):
method recv_getAuthQrcode (line 9284) | def recv_getAuthQrcode(self):
method getBlockedContactIds (line 9301) | def getBlockedContactIds(self):
method send_getBlockedContactIds (line 9305) | def send_getBlockedContactIds(self):
method recv_getBlockedContactIds (line 9312) | def recv_getBlockedContactIds(self):
method getBlockedContactIdsByRange (line 9329) | def getBlockedContactIdsByRange(self, start, count):
method send_getBlockedContactIdsByRange (line 9338) | def send_getBlockedContactIdsByRange(self, start, count):
method recv_getBlockedContactIdsByRange (line 9347) | def recv_getBlockedContactIdsByRange(self):
method getBlockedRecommendationIds (line 9364) | def getBlockedRecommendationIds(self):
method send_getBlockedRecommendationIds (line 9368) | def send_getBlockedRecommendationIds(self):
method recv_getBlockedRecommendationIds (line 9375) | def recv_getBlockedRecommendationIds(self):
method getBuddyBlockerIds (line 9392) | def getBuddyBlockerIds(self):
method send_getBuddyBlockerIds (line 9396) | def send_getBuddyBlockerIds(self):
method recv_getBuddyBlockerIds (line 9403) | def recv_getBuddyBlockerIds(self):
method getBuddyLocation (line 9420) | def getBuddyLocation(self, mid, index):
method send_getBuddyLocation (line 9429) | def send_getBuddyLocation(self, mid, index):
method recv_getBuddyLocation (line 9438) | def recv_getBuddyLocation(self):
method getCompactContactsModifiedSince (line 9455) | def getCompactContactsModifiedSince(self, timestamp):
method send_getCompactContactsModifiedSince (line 9463) | def send_getCompactContactsModifiedSince(self, timestamp):
method recv_getCompactContactsModifiedSince (line 9471) | def recv_getCompactContactsModifiedSince(self):
method getCompactGroup (line 9488) | def getCompactGroup(self, groupId):
method send_getCompactGroup (line 9496) | def send_getCompactGroup(self, groupId):
method recv_getCompactGroup (line 9504) | def recv_getCompactGroup(self):
method getCompactRoom (line 9521) | def getCompactRoom(self, roomId):
method send_getCompactRoom (line 9529) | def send_getCompactRoom(self, roomId):
method recv_getCompactRoom (line 9537) | def recv_getCompactRoom(self):
method getContact (line 9554) | def getContact(self, id):
method send_getContact (line 9562) | def send_getContact(self, id):
method recv_getContact (line 9570) | def recv_getContact(self):
method getContacts (line 9587) | def getContacts(self, ids):
method send_getContacts (line 9595) | def send_getContacts(self, ids):
method recv_getContacts (line 9603) | def recv_getContacts(self):
method getCountryWithRequestIp (line 9620) | def getCountryWithRequestIp(self):
method send_getCountryWithRequestIp (line 9624) | def send_getCountryWithRequestIp(self):
method recv_getCountryWithRequestIp (line 9631) | def recv_getCountryWithRequestIp(self):
method getFavoriteMids (line 9648) | def getFavoriteMids(self):
method send_getFavoriteMids (line 9652) | def send_getFavoriteMids(self):
method recv_getFavoriteMids (line 9659) | def recv_getFavoriteMids(self):
method getGroup (line 9676) | def getGroup(self, groupId):
method send_getGroup (line 9684) | def send_getGroup(self, groupId):
method recv_getGroup (line 9692) | def recv_getGroup(self):
method getGroupIdsInvited (line 9709) | def getGroupIdsInvited(self):
method send_getGroupIdsInvited (line 9713) | def send_getGroupIdsInvited(self):
method recv_getGroupIdsInvited (line 9720) | def recv_getGroupIdsInvited(self):
method getGroupIdsJoined (line 9737) | def getGroupIdsJoined(self):
method send_getGroupIdsJoined (line 9741) | def send_getGroupIdsJoined(self):
method recv_getGroupIdsJoined (line 9748) | def recv_getGroupIdsJoined(self):
method getGroups (line 9765) | def getGroups(self, groupIds):
method send_getGroups (line 9773) | def send_getGroups(self, groupIds):
method recv_getGroups (line 9781) | def recv_getGroups(self):
method getHiddenContactMids (line 9798) | def getHiddenContactMids(self):
method send_getHiddenContactMids (line 9802) | def send_getHiddenContactMids(self):
method recv_getHiddenContactMids (line 9809) | def recv_getHiddenContactMids(self):
method getIdentityIdentifier (line 9826) | def getIdentityIdentifier(self):
method send_getIdentityIdentifier (line 9830) | def send_getIdentityIdentifier(self):
method recv_getIdentityIdentifier (line 9837) | def recv_getIdentityIdentifier(self):
method getLastAnnouncementIndex (line 9854) | def getLastAnnouncementIndex(self):
method send_getLastAnnouncementIndex (line 9858) | def send_getLastAnnouncementIndex(self):
method recv_getLastAnnouncementIndex (line 9865) | def recv_getLastAnnouncementIndex(self):
method getLastOpRevision (line 9882) | def getLastOpRevision(self):
method send_getLastOpRevision (line 9886) | def send_getLastOpRevision(self):
method recv_getLastOpRevision (line 9893) | def recv_getLastOpRevision(self):
method getMessageBox (line 9910) | def getMessageBox(self, channelId, messageBoxId, lastMessagesCount):
method send_getMessageBox (line 9920) | def send_getMessageBox(self, channelId, messageBoxId, lastMessagesCount):
method recv_getMessageBox (line 9930) | def recv_getMessageBox(self):
method getMessageBoxCompactWrapUp (line 9947) | def getMessageBoxCompactWrapUp(self, mid):
method send_getMessageBoxCompactWrapUp (line 9955) | def send_getMessageBoxCompactWrapUp(self, mid):
method recv_getMessageBoxCompactWrapUp (line 9963) | def recv_getMessageBoxCompactWrapUp(self):
method getMessageBoxCompactWrapUpList (line 9980) | def getMessageBoxCompactWrapUpList(self, start, messageBoxCount):
method send_getMessageBoxCompactWrapUpList (line 9989) | def send_getMessageBoxCompactWrapUpList(self, start, messageBoxCount):
method recv_getMessageBoxCompactWrapUpList (line 9998) | def recv_getMessageBoxCompactWrapUpList(self):
method getMessageBoxList (line 10015) | def getMessageBoxList(self, channelId, lastMessagesCount):
method send_getMessageBoxList (line 10024) | def send_getMessageBoxList(self, channelId, lastMessagesCount):
method recv_getMessageBoxList (line 10033) | def recv_getMessageBoxList(self):
method getMessageBoxListByStatus (line 10050) | def getMessageBoxListByStatus(self, channelId, lastMessagesCount, stat...
method send_getMessageBoxListByStatus (line 10060) | def send_getMessageBoxListByStatus(self, channelId, lastMessagesCount,...
method recv_getMessageBoxListByStatus (line 10070) | def recv_getMessageBoxListByStatus(self):
method getMessageBoxWrapUp (line 10087) | def getMessageBoxWrapUp(self, mid):
method send_getMessageBoxWrapUp (line 10095) | def send_getMessageBoxWrapUp(self, mid):
method recv_getMessageBoxWrapUp (line 10103) | def recv_getMessageBoxWrapUp(self):
method getMessageBoxWrapUpList (line 10120) | def getMessageBoxWrapUpList(self, start, messageBoxCount):
method send_getMessageBoxWrapUpList (line 10129) | def send_getMessageBoxWrapUpList(self, start, messageBoxCount):
method recv_getMessageBoxWrapUpList (line 10138) | def recv_getMessageBoxWrapUpList(self):
method getMessagesBySequenceNumber (line 10155) | def getMessagesBySequenceNumber(self, channelId, messageBoxId, startSe...
method send_getMessagesBySequenceNumber (line 10166) | def send_getMessagesBySequenceNumber(self, channelId, messageBoxId, st...
method recv_getMessagesBySequenceNumber (line 10177) | def recv_getMessagesBySequenceNumber(self):
method getNextMessages (line 10194) | def getNextMessages(self, messageBoxId, startSeq, messagesCount):
method send_getNextMessages (line 10204) | def send_getNextMessages(self, messageBoxId, startSeq, messagesCount):
method recv_getNextMessages (line 10214) | def recv_getNextMessages(self):
method getNotificationPolicy (line 10231) | def getNotificationPolicy(self, carrier):
method send_getNotificationPolicy (line 10239) | def send_getNotificationPolicy(self, carrier):
method recv_getNotificationPolicy (line 10247) | def recv_getNotificationPolicy(self):
method getPreviousMessages (line 10264) | def getPreviousMessages(self, messageBoxId, endSeq, messagesCount):
method send_getPreviousMessages (line 10274) | def send_getPreviousMessages(self, messageBoxId, endSeq, messagesCount):
method recv_getPreviousMessages (line 10284) | def recv_getPreviousMessages(self):
method getProfile (line 10301) | def getProfile(self):
method send_getProfile (line 10305) | def send_getProfile(self):
method recv_getProfile (line 10312) | def recv_getProfile(self):
method getProximityMatchCandidateList (line 10329) | def getProximityMatchCandidateList(self, sessionId):
method send_getProximityMatchCandidateList (line 10337) | def send_getProximityMatchCandidateList(self, sessionId):
method recv_getProximityMatchCandidateList (line 10345) | def recv_getProximityMatchCandidateList(self):
method getProximityMatchCandidates (line 10362) | def getProximityMatchCandidates(self, sessionId):
method send_getProximityMatchCandidates (line 10370) | def send_getProximityMatchCandidates(self, sessionId):
method recv_getProximityMatchCandidates (line 10378) | def recv_getProximityMatchCandidates(self):
method getRecentMessages (line 10395) | def getRecentMessages(self, messageBoxId, messagesCount):
method send_getRecentMessages (line 10404) | def send_getRecentMessages(self, messageBoxId, messagesCount):
method recv_getRecentMessages (line 10413) | def recv_getRecentMessages(self):
method getRecommendationIds (line 10430) | def getRecommendationIds(self):
method send_getRecommendationIds (line 10434) | def send_getRecommendationIds(self):
method recv_getRecommendationIds (line 10441) | def recv_getRecommendationIds(self):
method getRoom (line 10458) | def getRoom(self, roomId):
method send_getRoom (line 10466) | def send_getRoom(self, roomId):
method recv_getRoom (line 10474) | def recv_getRoom(self):
method getRSAKeyInfo (line 10491) | def getRSAKeyInfo(self, provider):
method send_getRSAKeyInfo (line 10499) | def send_getRSAKeyInfo(self, provider):
method recv_getRSAKeyInfo (line 10507) | def recv_getRSAKeyInfo(self):
method getServerTime (line 10524) | def getServerTime(self):
method send_getServerTime (line 10528) | def send_getServerTime(self):
method recv_getServerTime (line 10535) | def recv_getServerTime(self):
method getSessions (line 10552) | def getSessions(self):
method send_getSessions (line 10556) | def send_getSessions(self):
method recv_getSessions (line 10563) | def recv_getSessions(self):
method getSettings (line 10580) | def getSettings(self):
method send_getSettings (line 10584) | def send_getSettings(self):
method recv_getSettings (line 10591) | def recv_getSettings(self):
method getSettingsAttributes (line 10608) | def getSettingsAttributes(self, attrBitset):
method send_getSettingsAttributes (line 10616) | def send_getSettingsAttributes(self, attrBitset):
method recv_getSettingsAttributes (line 10624) | def recv_getSettingsAttributes(self):
method getSystemConfiguration (line 10641) | def getSystemConfiguration(self):
method send_getSystemConfiguration (line 10645) | def send_getSystemConfiguration(self):
method recv_getSystemConfiguration (line 10652) | def recv_getSystemConfiguration(self):
method getUserTicket (line 10669) | def getUserTicket(self):
method send_getUserTicket (line 10673) | def send_getUserTicket(self):
method recv_getUserTicket (line 10680) | def recv_getUserTicket(self):
method getWapInvitation (line 10697) | def getWapInvitation(self, invitationHash):
method send_getWapInvitation (line 10705) | def send_getWapInvitation(self, invitationHash):
method recv_getWapInvitation (line 10713) | def recv_getWapInvitation(self):
method invalidateUserTicket (line 10730) | def invalidateUserTicket(self):
method send_invalidateUserTicket (line 10734) | def send_invalidateUserTicket(self):
method recv_invalidateUserTicket (line 10741) | def recv_invalidateUserTicket(self):
method inviteFriendsBySms (line 10756) | def inviteFriendsBySms(self, phoneNumberList):
method send_inviteFriendsBySms (line 10764) | def send_inviteFriendsBySms(self, phoneNumberList):
method recv_inviteFriendsBySms (line 10772) | def recv_inviteFriendsBySms(self):
method inviteIntoGroup (line 10787) | def inviteIntoGroup(self, reqSeq, groupId, contactIds):
method send_inviteIntoGroup (line 10797) | def send_inviteIntoGroup(self, reqSeq, groupId, contactIds):
method recv_inviteIntoGroup (line 10807) | def recv_inviteIntoGroup(self):
method inviteIntoRoom (line 10822) | def inviteIntoRoom(self, reqSeq, roomId, contactIds):
method send_inviteIntoRoom (line 10832) | def send_inviteIntoRoom(self, reqSeq, roomId, contactIds):
method recv_inviteIntoRoom (line 10842) | def recv_inviteIntoRoom(self):
method inviteViaEmail (line 10857) | def inviteViaEmail(self, reqSeq, email, name):
method send_inviteViaEmail (line 10867) | def send_inviteViaEmail(self, reqSeq, email, name):
method recv_inviteViaEmail (line 10877) | def recv_inviteViaEmail(self):
method isIdentityIdentifierAvailable (line 10892) | def isIdentityIdentifierAvailable(self, provider, identifier):
method send_isIdentityIdentifierAvailable (line 10901) | def send_isIdentityIdentifierAvailable(self, provider, identifier):
method recv_isIdentityIdentifierAvailable (line 10910) | def recv_isIdentityIdentifierAvailable(self):
method isUseridAvailable (line 10927) | def isUseridAvailable(self, userid):
method send_isUseridAvailable (line 10935) | def send_isUseridAvailable(self, userid):
method recv_isUseridAvailable (line 10943) | def recv_isUseridAvailable(self):
method kickoutFromGroup (line 10960) | def kickoutFromGroup(self, reqSeq, groupId, contactIds):
method send_kickoutFromGroup (line 10970) | def send_kickoutFromGroup(self, reqSeq, groupId, contactIds):
method recv_kickoutFromGroup (line 10980) | def recv_kickoutFromGroup(self):
method leaveGroup (line 10995) | def leaveGroup(self, reqSeq, groupId):
method send_leaveGroup (line 11004) | def send_leaveGroup(self, reqSeq, groupId):
method recv_leaveGroup (line 11013) | def recv_leaveGroup(self):
method leaveRoom (line 11028) | def leaveRoom(self, reqSeq, roomId):
method send_leaveRoom (line 11037) | def send_leaveRoom(self, reqSeq, roomId):
method recv_leaveRoom (line 11046) | def recv_leaveRoom(self):
method loginWithIdentityCredential (line 11061) | def loginWithIdentityCredential(self, identityProvider, identifier, pa...
method send_loginWithIdentityCredential (line 11075) | def send_loginWithIdentityCredential(self, identityProvider, identifie...
method recv_loginWithIdentityCredential (line 11089) | def recv_loginWithIdentityCredential(self):
method loginWithIdentityCredentialForCertificate (line 11106) | def loginWithIdentityCredentialForCertificate(self, identityProvider, ...
method send_loginWithIdentityCredentialForCertificate (line 11120) | def send_loginWithIdentityCredentialForCertificate(self, identityProvi...
method recv_loginWithIdentityCredentialForCertificate (line 11134) | def recv_loginWithIdentityCredentialForCertificate(self):
method loginWithVerifier (line 11151) | def loginWithVerifier(self, verifier):
method send_loginWithVerifier (line 11159) | def send_loginWithVerifier(self, verifier):
method recv_loginWithVerifier (line 11167) | def recv_loginWithVerifier(self):
method loginWithVerifierForCerificate (line 11184) | def loginWithVerifierForCerificate(self, verifier):
method send_loginWithVerifierForCerificate (line 11192) | def send_loginWithVerifierForCerificate(self, verifier):
method recv_loginWithVerifierForCerificate (line 11200) | def recv_loginWithVerifierForCerificate(self):
method loginWithVerifierForCertificate (line 11217) | def loginWithVerifierForCertificate(self, verifier):
method send_loginWithVerifierForCertificate (line 11225) | def send_loginWithVerifierForCertificate(self, verifier):
method recv_loginWithVerifierForCertificate (line 11233) | def recv_loginWithVerifierForCertificate(self):
method logout (line 11250) | def logout(self):
method send_logout (line 11254) | def send_logout(self):
method recv_logout (line 11261) | def recv_logout(self):
method logoutSession (line 11276) | def logoutSession(self, tokenKey):
method send_logoutSession (line 11284) | def send_logoutSession(self, tokenKey):
method recv_logoutSession (line 11292) | def recv_logoutSession(self):
method noop (line 11307) | def noop(self):
method send_noop (line 11311) | def send_noop(self):
method recv_noop (line 11318) | def recv_noop(self):
method notifiedRedirect (line 11333) | def notifiedRedirect(self, paramMap):
method send_notifiedRedirect (line 11341) | def send_notifiedRedirect(self, paramMap):
method recv_notifiedRedirect (line 11349) | def recv_notifiedRedirect(self):
method notifyBuddyOnAir (line 11364) | def notifyBuddyOnAir(self, seq, receiverMids):
method send_notifyBuddyOnAir (line 11373) | def send_notifyBuddyOnAir(self, seq, receiverMids):
method recv_notifyBuddyOnAir (line 11382) | def recv_notifyBuddyOnAir(self):
method notifyIndividualEvent (line 11399) | def notifyIndividualEvent(self, notificationStatus, receiverMids):
method send_notifyIndividualEvent (line 11408) | def send_notifyIndividualEvent(self, notificationStatus, receiverMids):
method recv_notifyIndividualEvent (line 11417) | def recv_notifyIndividualEvent(self):
method notifyInstalled (line 11432) | def notifyInstalled(self, udidHash, applicationTypeWithExtensions):
method send_notifyInstalled (line 11441) | def send_notifyInstalled(self, udidHash, applicationTypeWithExtensions):
method recv_notifyInstalled (line 11450) | def recv_notifyInstalled(self):
method notifyRegistrationComplete (line 11463) | def notifyRegistrationComplete(self, udidHash, applicationTypeWithExte...
method send_notifyRegistrationComplete (line 11472) | def send_notifyRegistrationComplete(self, udidHash, applicationTypeWit...
method recv_notifyRegistrationComplete (line 11481) | def recv_notifyRegistrationComplete(self):
method notifySleep (line 11494) | def notifySleep(self, lastRev, badge):
method send_notifySleep (line 11503) | def send_notifySleep(self, lastRev, badge):
method recv_notifySleep (line 11512) | def recv_notifySleep(self):
method notifyUpdated (line 11527) | def notifyUpdated(self, lastRev, deviceInfo):
method send_notifyUpdated (line 11536) | def send_notifyUpdated(self, lastRev, deviceInfo):
method recv_notifyUpdated (line 11545) | def recv_notifyUpdated(self):
method openProximityMatch (line 11560) | def openProximityMatch(self, location):
method send_openProximityMatch (line 11568) | def send_openProximityMatch(self, location):
method recv_openProximityMatch (line 11576) | def recv_openProximityMatch(self):
method registerBuddyUser (line 11593) | def registerBuddyUser(self, buddyId, registrarPassword):
method send_registerBuddyUser (line 11602) | def send_registerBuddyUser(self, buddyId, registrarPassword):
method recv_registerBuddyUser (line 11611) | def recv_registerBuddyUser(self):
method registerBuddyUserid (line 11628) | def registerBuddyUserid(self, seq, userid):
method send_registerBuddyUserid (line 11637) | def send_registerBuddyUserid(self, seq, userid):
method recv_registerBuddyUserid (line 11646) | def recv_registerBuddyUserid(self):
method registerDevice (line 11661) | def registerDevice(self, sessionId):
method send_registerDevice (line 11669) | def send_registerDevice(self, sessionId):
method recv_registerDevice (line 11677) | def recv_registerDevice(self):
method registerDeviceWithIdentityCredential (line 11694) | def registerDeviceWithIdentityCredential(self, sessionId, provider, id...
method send_registerDeviceWithIdentityCredential (line 11705) | def send_registerDeviceWithIdentityCredential(self, sessionId, provide...
method recv_registerDeviceWithIdentityCredential (line 11716) | def recv_registerDeviceWithIdentityCredential(self):
method registerDeviceWithoutPhoneNumber (line 11733) | def registerDeviceWithoutPhoneNumber(self, region, udidHash, deviceInfo):
method send_registerDeviceWithoutPhoneNumber (line 11743) | def send_registerDeviceWithoutPhoneNumber(self, region, udidHash, devi...
method recv_registerDeviceWithoutPhoneNumber (line 11753) | def recv_registerDeviceWithoutPhoneNumber(self):
method registerDeviceWithoutPhoneNumberWithIdentityCredential (line 11770) | def registerDeviceWithoutPhoneNumberWithIdentityCredential(self, regio...
method send_registerDeviceWithoutPhoneNumberWithIdentityCredential (line 11784) | def send_registerDeviceWithoutPhoneNumberWithIdentityCredential(self, ...
method recv_registerDeviceWithoutPhoneNumberWithIdentityCredential (line 11798) | def recv_registerDeviceWithoutPhoneNumberWithIdentityCredential(self):
method registerUserid (line 11815) | def registerUserid(self, reqSeq, userid):
method send_registerUserid (line 11824) | def send_registerUserid(self, reqSeq, userid):
method recv_registerUserid (line 11833) | def recv_registerUserid(self):
method registerWapDevice (line 11850) | def registerWapDevice(self, invitationHash, guidHash, email, deviceInfo):
method send_registerWapDevice (line 11861) | def send_registerWapDevice(self, invitationHash, guidHash, email, devi...
method recv_registerWapDevice (line 11872) | def recv_registerWapDevice(self):
method registerWithExistingSnsIdAndIdentityCredential (line 11889) | def registerWithExistingSnsIdAndIdentityCredential(self, identityCrede...
method send_registerWithExistingSnsIdAndIdentityCredential (line 11900) | def send_registerWithExistingSnsIdAndIdentityCredential(self, identity...
method recv_registerWithExistingSnsIdAndIdentityCredential (line 11911) | def recv_registerWithExistingSnsIdAndIdentityCredential(self):
method registerWithSnsId (line 11928) | def registerWithSnsId(self, snsIdType, snsAccessToken, region, udidHas...
method send_registerWithSnsId (line 11941) | def send_registerWithSnsId(self, snsIdType, snsAccessToken, region, ud...
method recv_registerWithSnsId (line 11954) | def recv_registerWithSnsId(self):
method registerWithSnsIdAndIdentityCredential (line 11971) | def registerWithSnsIdAndIdentityCredential(self, snsIdType, snsAccessT...
method send_registerWithSnsIdAndIdentityCredential (line 11984) | def send_registerWithSnsIdAndIdentityCredential(self, snsIdType, snsAc...
method recv_registerWithSnsIdAndIdentityCredential (line 11997) | def recv_registerWithSnsIdAndIdentityCredential(self):
method reissueDeviceCredential (line 12014) | def reissueDeviceCredential(self):
method send_reissueDeviceCredential (line 12018) | def send_reissueDeviceCredential(self):
method recv_reissueDeviceCredential (line 12025) | def recv_reissueDeviceCredential(self):
method reissueUserTicket (line 12042) | def reissueUserTicket(self, expirationTime, maxUseCount):
method send_reissueUserTicket (line 12051) | def send_reissueUserTicket(self, expirationTime, maxUseCount):
method recv_reissueUserTicket (line 12060) | def recv_reissueUserTicket(self):
method reissueGroupTicket (line 12077) | def reissueGroupTicket(self, groupId):
method send_reissueGroupTicket (line 12085) | def send_reissueGroupTicket(self, groupId):
method recv_reissueGroupTicket (line 12093) | def recv_reissueGroupTicket(self):
method rejectGroupInvitation (line 12110) | def rejectGroupInvitation(self, reqSeq, groupId):
method send_rejectGroupInvitation (line 12119) | def send_rejectGroupInvitation(self, reqSeq, groupId):
method recv_rejectGroupInvitation (line 12128) | def recv_rejectGroupInvitation(self):
method releaseSession (line 12143) | def releaseSession(self):
method send_releaseSession (line 12147) | def send_releaseSession(self):
method recv_releaseSession (line 12154) | def recv_releaseSession(self):
method removeAllMessages (line 12169) | def removeAllMessages(self, seq, lastMessageId):
method send_removeAllMessages (line 12178) | def send_removeAllMessages(self, seq, lastMessageId):
method recv_removeAllMessages (line 12187) | def recv_removeAllMessages(self):
method removeBuddyLocation (line 12202) | def removeBuddyLocation(self, mid, index):
method send_removeBuddyLocation (line 12211) | def send_removeBuddyLocation(self, mid, index):
method recv_removeBuddyLocation (line 12220) | def recv_removeBuddyLocation(self):
method removeMessage (line 12235) | def removeMessage(self, messageId):
method send_removeMessage (line 12243) | def send_removeMessage(self, messageId):
method recv_removeMessage (line 12251) | def recv_removeMessage(self):
method removeMessageFromMyHome (line 12268) | def removeMessageFromMyHome(self, messageId):
method send_removeMessageFromMyHome (line 12276) | def send_removeMessageFromMyHome(self, messageId):
method recv_removeMessageFromMyHome (line 12284) | def recv_removeMessageFromMyHome(self):
method removeSnsId (line 12301) | def removeSnsId(self, snsIdType):
method send_removeSnsId (line 12309) | def send_removeSnsId(self, snsIdType):
method recv_removeSnsId (line 12317) | def recv_removeSnsId(self):
method report (line 12334) | def report(self, syncOpRevision, category, report):
method send_report (line 12344) | def send_report(self, syncOpRevision, category, report):
method recv_report (line 12354) | def recv_report(self):
method reportContacts (line 12369) | def reportContacts(self, syncOpRevision, category, contactReports, act...
method send_reportContacts (line 12380) | def send_reportContacts(self, syncOpRevision, category, contactReports...
method recv_reportContacts (line 12391) | def recv_reportContacts(self):
method reportGroups (line 12408) | def reportGroups(self, syncOpRevision, groups):
method send_reportGroups (line 12417) | def send_reportGroups(self, syncOpRevision, groups):
method recv_reportGroups (line 12426) | def recv_reportGroups(self):
method reportProfile (line 12441) | def reportProfile(self, syncOpRevision, profile):
method send_reportProfile (line 12450) | def send_reportProfile(self, syncOpRevision, profile):
method recv_reportProfile (line 12459) | def recv_reportProfile(self):
method reportRooms (line 12474) | def reportRooms(self, syncOpRevision, rooms):
method send_reportRooms (line 12483) | def send_reportRooms(self, syncOpRevision, rooms):
method recv_reportRooms (line 12492) | def recv_reportRooms(self):
method reportSettings (line 12507) | def reportSettings(self, syncOpRevision, settings):
method send_reportSettings (line 12516) | def send_reportSettings(self, syncOpRevision, settings):
method recv_reportSettings (line 12525) | def recv_reportSettings(self):
method reportSpammer (line 12540) | def reportSpammer(self, spammerMid, spammerReasons, spamMessageIds):
method send_reportSpammer (line 12550) | def send_reportSpammer(self, spammerMid, spammerReasons, spamMessageIds):
method recv_reportSpammer (line 12560) | def recv_reportSpammer(self):
method requestAccountPasswordReset (line 12575) | def requestAccountPasswordReset(self, provider, identifier, locale):
method send_requestAccountPasswordReset (line 12585) | def send_requestAccountPasswordReset(self, provider, identifier, locale):
method recv_requestAccountPasswordReset (line 12595) | def recv_requestAccountPasswordReset(self):
method requestEmailConfirmation (line 12610) | def requestEmailConfirmation(self, emailConfirmation):
method send_requestEmailConfirmation (line 12618) | def send_requestEmailConfirmation(self, emailConfirmation):
method recv_requestEmailConfirmation (line 12626) | def recv_requestEmailConfirmation(self):
method requestIdentityUnbind (line 12643) | def requestIdentityUnbind(self, provider, identifier):
method send_requestIdentityUnbind (line 12652) | def send_requestIdentityUnbind(self, provider, identifier):
method recv_requestIdentityUnbind (line 12661) | def recv_requestIdentityUnbind(self):
method resendEmailConfirmation (line 12676) | def resendEmailConfirmation(self, verifier):
method send_resendEmailConfirmation (line 12684) | def send_resendEmailConfirmation(self, verifier):
method recv_resendEmailConfirmation (line 12692) | def recv_resendEmailConfirmation(self):
method resendPinCode (line 12709) | def resendPinCode(self, sessionId):
method send_resendPinCode (line 12717) | def send_resendPinCode(self, sessionId):
method recv_resendPinCode (line 12725) | def recv_resendPinCode(self):
method resendPinCodeBySMS (line 12740) | def resendPinCodeBySMS(self, sessionId):
method send_resendPinCodeBySMS (line 12748) | def send_resendPinCodeBySMS(self, sessionId):
method recv_resendPinCodeBySMS (line 12756) | def recv_resendPinCodeBySMS(self):
method sendChatChecked (line 12771) | def sendChatChecked(self, seq, consumer, lastMessageId):
method send_sendChatChecked (line 12781) | def send_sendChatChecked(self, seq, consumer, lastMessageId):
method recv_sendChatChecked (line 12791) | def recv_sendChatChecked(self):
method sendChatRemoved (line 12806) | def sendChatRemoved(self, seq, consumer, lastMessageId):
method send_sendChatRemoved (line 12816) | def send_sendChatRemoved(self, seq, consumer, lastMessageId):
method recv_sendChatRemoved (line 12826) | def recv_sendChatRemoved(self):
method sendContentPreviewUpdated (line 12841) | def sendContentPreviewUpdated(self, esq, messageId, receiverMids):
method send_sendContentPreviewUpdated (line 12851) | def send_sendContentPreviewUpdated(self, esq, messageId, receiverMids):
method recv_sendContentPreviewUpdated (line 12861) | def recv_sendContentPreviewUpdated(self):
method sendContentReceipt (line 12878) | def sendContentReceipt(self, seq, consumer, messageId):
method send_sendContentReceipt (line 12888) | def send_sendContentReceipt(self, seq, consumer, messageId):
method recv_sendContentReceipt (line 12898) | def recv_sendContentReceipt(self):
method sendDummyPush (line 12913) | def sendDummyPush(self):
method send_sendDummyPush (line 12917) | def send_sendDummyPush(self):
method recv_sendDummyPush (line 12924) | def recv_sendDummyPush(self):
method sendEvent (line 12939) | def sendEvent(self, seq, message):
method send_sendEvent (line 12948) | def send_sendEvent(self, seq, message):
method recv_sendEvent (line 12957) | def recv_sendEvent(self):
method sendMessage (line 12974) | def sendMessage(self, seq, message):
method send_sendMessage (line 12983) | def send_sendMessage(self, seq, message):
method recv_sendMessage (line 12992) | def recv_sendMessage(self):
method sendMessageIgnored (line 13009) | def sendMessageIgnored(self, seq, consumer, messageIds):
method send_sendMessageIgnored (line 13019) | def send_sendMessageIgnored(self, seq, consumer, messageIds):
method recv_sendMessageIgnored (line 13029) | def recv_sendMessageIgnored(self):
method sendMessageReceipt (line 13044) | def sendMessageReceipt(self, seq, consumer, messageIds):
method send_sendMessageReceipt (line 13054) | def send_sendMessageReceipt(self, seq, consumer, messageIds):
method recv_sendMessageReceipt (line 13064) | def recv_sendMessageReceipt(self):
method sendMessageToMyHome (line 13079) | def sendMessageToMyHome(self, seq, message):
method send_sendMessageToMyHome (line 13088) | def send_sendMessageToMyHome(self, seq, message):
method recv_sendMessageToMyHome (line 13097) | def recv_sendMessageToMyHome(self):
method setBuddyLocation (line 13114) | def setBuddyLocation(self, mid, index, location):
method send_setBuddyLocation (line 13124) | def send_setBuddyLocation(self, mid, index, location):
method recv_setBuddyLocation (line 13134) | def recv_setBuddyLocation(self):
method setIdentityCredential (line 13149) | def setIdentityCredential(self, provider, identifier, verifier):
method send_setIdentityCredential (line 13159) | def send_setIdentityCredential(self, provider, identifier, verifier):
method recv_setIdentityCredential (line 13169) | def recv_setIdentityCredential(self):
method setNotificationsEnabled (line 13184) | def setNotificationsEnabled(self, reqSeq, type, target, enablement):
method send_setNotificationsEnabled (line 13195) | def send_setNotificationsEnabled(self, reqSeq, type, target, enablement):
method recv_setNotificationsEnabled (line 13206) | def recv_setNotificationsEnabled(self):
method startUpdateVerification (line 13221) | def startUpdateVerification(self, region, carrier, phone, udidHash, de...
method send_startUpdateVerification (line 13235) | def send_startUpdateVerification(self, region, carrier, phone, udidHas...
method recv_startUpdateVerification (line 13249) | def recv_startUpdateVerification(self):
method startVerification (line 13266) | def startVerification(self, region, carrier, phone, udidHash, deviceIn...
method send_startVerification (line 13281) | def send_startVerification(self, region, carrier, phone, udidHash, dev...
method recv_startVerification (line 13296) | def recv_startVerification(self):
method storeUpdateProfileAttribute (line 13313) | def storeUpdateProfileAttribute(self, seq, profileAttribute, value):
method send_storeUpdateProfileAttribute (line 13323) | def send_storeUpdateProfileAttribute(self, seq, profileAttribute, value):
method recv_storeUpdateProfileAttribute (line 13333) | def recv_storeUpdateProfileAttribute(self):
method syncContactBySnsIds (line 13348) | def syncContactBySnsIds(self, reqSeq, modifications):
method send_syncContactBySnsIds (line 13357) | def send_syncContactBySnsIds(self, reqSeq, modifications):
method recv_syncContactBySnsIds (line 13366) | def recv_syncContactBySnsIds(self):
method syncContacts (line 13383) | def syncContacts(self, reqSeq, localContacts):
method send_syncContacts (line 13392) | def send_syncContacts(self, reqSeq, localContacts):
method recv_syncContacts (line 13401) | def recv_syncContacts(self):
method trySendMessage (line 13418) | def trySendMessage(self, seq, message):
method send_trySendMessage (line 13427) | def send_trySendMessage(self, seq, message):
method recv_trySendMessage (line 13436) | def recv_trySendMessage(self):
method unblockContact (line 13453) | def unblockContact(self, reqSeq, id):
method send_unblockContact (line 13462) | def send_unblockContact(self, reqSeq, id):
method recv_unblockContact (line 13471) | def recv_unblockContact(self):
method unblockRecommendation (line 13486) | def unblockRecommendation(self, reqSeq, id):
method send_unblockRecommendation (line 13495) | def send_unblockRecommendation(self, reqSeq, id):
method recv_unblockRecommendation (line 13504) | def recv_unblockRecommendation(self):
method unregisterUserAndDevice (line 13519) | def unregisterUserAndDevice(self):
method send_unregisterUserAndDevice (line 13523) | def send_unregisterUserAndDevice(self):
method recv_unregisterUserAndDevice (line 13530) | def recv_unregisterUserAndDevice(self):
method updateApnsDeviceToken (line 13547) | def updateApnsDeviceToken(self, apnsDeviceToken):
method send_updateApnsDeviceToken (line 13555) | def send_updateApnsDeviceToken(self, apnsDeviceToken):
method recv_updateApnsDeviceToken (line 13563) | def recv_updateApnsDeviceToken(self):
method updateBuddySetting (line 13578) | def updateBuddySetting(self, key, value):
method send_updateBuddySetting (line 13587) | def send_updateBuddySetting(self, key, value):
method recv_updateBuddySetting (line 13596) | def recv_updateBuddySetting(self):
method updateC2DMRegistrationId (line 13611) | def updateC2DMRegistrationId(self, registrationId):
method send_updateC2DMRegistrationId (line 13619) | def send_updateC2DMRegistrationId(self, registrationId):
method recv_updateC2DMRegistrationId (line 13627) | def recv_updateC2DMRegistrationId(self):
method updateContactSetting (line 13642) | def updateContactSetting(self, reqSeq, mid, flag, value):
method send_updateContactSetting (line 13653) | def send_updateContactSetting(self, reqSeq, mid, flag, value):
method recv_updateContactSetting (line 13664) | def recv_updateContactSetting(self):
method updateCustomModeSettings (line 13679) | def updateCustomModeSettings(self, customMode, paramMap):
method send_updateCustomModeSettings (line 13688) | def send_updateCustomModeSettings(self, customMode, paramMap):
method recv_updateCustomModeSettings (line 13697) | def recv_updateCustomModeSettings(self):
method updateDeviceInfo (line 13712) | def updateDeviceInfo(self, deviceUid, deviceInfo):
method send_updateDeviceInfo (line 13721) | def send_updateDeviceInfo(self, deviceUid, deviceInfo):
method recv_updateDeviceInfo (line 13730) | def recv_updateDeviceInfo(self):
method updateGroup (line 13745) | def updateGroup(self, reqSeq, group):
method send_updateGroup (line 13754) | def send_updateGroup(self, reqSeq, group):
method recv_updateGroup (line 13763) | def recv_updateGroup(self):
method updateNotificationToken (line 13778) | def updateNotificationToken(self, type, token):
method send_updateNotificationToken (line 13787) | def send_updateNotificationToken(self, type, token):
method recv_updateNotificationToken (line 13796) | def recv_updateNotificationToken(self):
method updateNotificationTokenWithBytes (line 13811) | def updateNotificationTokenWithBytes(self, type, token):
method send_updateNotificationTokenWithBytes (line 13820) | def send_updateNotificationTokenWithBytes(self, type, token):
method recv_updateNotificationTokenWithBytes (line 13829) | def recv_updateNotificationTokenWithBytes(self):
method updateProfile (line 13844) | def updateProfile(self, reqSeq, profile):
method send_updateProfile (line 13853) | def send_updateProfile(self, reqSeq, profile):
method recv_updateProfile (line 13862) | def recv_updateProfile(self):
method updateProfileAttribute (line 13877) | def updateProfileAttribute(self, reqSeq, attr, value):
method send_updateProfileAttribute (line 13887) | def send_updateProfileAttribute(self, reqSeq, attr, value):
method recv_updateProfileAttribute (line 13897) | def recv_updateProfileAttribute(self):
method updateRegion (line 13912) | def updateRegion(self, region):
method send_updateRegion (line 13920) | def send_updateRegion(self, region):
method recv_updateRegion (line 13928) | def recv_updateRegion(self):
method updateSettings (line 13943) | def updateSettings(self, reqSeq, settings):
method send_updateSettings (line 13952) | def send_updateSettings(self, reqSeq, settings):
method recv_updateSettings (line 13961) | def recv_updateSettings(self):
method updateSettings2 (line 13976) | def updateSettings2(self, reqSeq, settings):
method send_updateSettings2 (line 13985) | def send_updateSettings2(self, reqSeq, settings):
method recv_updateSettings2 (line 13994) | def recv_updateSettings2(self):
method updateSettingsAttribute (line 14011) | def updateSettingsAttribute(self, reqSeq, attr, value):
method send_updateSettingsAttribute (line 14021) | def send_updateSettingsAttribute(self, reqSeq, attr, value):
method recv_updateSettingsAttribute (line 14031) | def recv_updateSettingsAttribute(self):
method updateSettingsAttributes (line 14046) | def updateSettingsAttributes(self, reqSeq, attrBitset, settings):
method send_updateSettingsAttributes (line 14056) | def send_updateSettingsAttributes(self, reqSeq, attrBitset, settings):
method recv_updateSettingsAttributes (line 14066) | def recv_updateSettingsAttributes(self):
method verifyIdentityCredential (line 14083) | def verifyIdentityCredential(self, identityProvider, identifier, passw...
method send_verifyIdentityCredential (line 14093) | def send_verifyIdentityCredential(self, identityProvider, identifier, ...
method recv_verifyIdentityCredential (line 14103) | def recv_verifyIdentityCredential(self):
method verifyIdentityCredentialWithResult (line 14118) | def verifyIdentityCredentialWithResult(self, identityCredential):
method send_verifyIdentityCredentialWithResult (line 14126) | def send_verifyIdentityCredentialWithResult(self, identityCredential):
method recv_verifyIdentityCredentialWithResult (line 14134) | def recv_verifyIdentityCredentialWithResult(self):
method verifyPhone (line 14151) | def verifyPhone(self, sessionId, pinCode, udidHash):
method send_verifyPhone (line 14161) | def send_verifyPhone(self, sessionId, pinCode, udidHash):
method recv_verifyPhone (line 14171) | def recv_verifyPhone(self):
method verifyQrcode (line 14188) | def verifyQrcode(self, verifier, pinCode):
method send_verifyQrcode (line 14197) | def send_verifyQrcode(self, verifier, pinCode):
method recv_verifyQrcode (line 14206) | def recv_verifyQrcode(self):
method notify (line 14223) | def notify(self, event):
method send_notify (line 14231) | def send_notify(self, event):
method recv_notify (line 14239) | def recv_notify(self):
class Processor (line 14255) | class Processor(Iface, TProcessor):
method __init__ (line 14256) | def __init__(self, handler):
method process (line 14605) | def process(self, iprot, oprot):
method process_getRSAKey (line 14620) | def process_getRSAKey(self, seqid, iprot, oprot):
method process_notifyEmailConfirmationResult (line 14642) | def process_notifyEmailConfirmationResult(self, seqid, iprot, oprot):
method process_registerVirtualAccount (line 14664) | def process_registerVirtualAccount(self, seqid, iprot, oprot):
method process_requestVirtualAccountPasswordChange (line 14686) | def process_requestVirtualAccountPasswordChange(self, seqid, iprot, op...
method process_requestVirtualAccountPasswordSet (line 14708) | def process_requestVirtualAccountPasswordSet(self, seqid, iprot, oprot):
method process_unregisterVirtualAccount (line 14730) | def process_unregisterVirtualAccount(self, seqid, iprot, oprot):
method process_checkUserAge (line 14752) | def process_checkUserAge(self, seqid, iprot, oprot):
method process_checkUserAgeWithDocomo (line 14774) | def process_checkUserAgeWithDocomo(self, seqid, iprot, oprot):
method process_retrieveOpenIdAuthUrlWithDocomo (line 14796) | def process_retrieveOpenIdAuthUrlWithDocomo(self, seqid, iprot, oprot):
method process_retrieveRequestToken (line 14818) | def process_retrieveRequestToken(self, seqid, iprot, oprot):
method process_addBuddyMember (line 14840) | def process_addBuddyMember(self, seqid, iprot, oprot):
method process_addBuddyMembers (line 14862) | def process_addBuddyMembers(self, seqid, iprot, oprot):
method process_blockBuddyMember (line 14884) | def process_blockBuddyMember(self, seqid, iprot, oprot):
method process_commitSendMessagesToAll (line 14906) | def process_commitSendMessagesToAll(self, seqid, iprot, oprot):
method process_commitSendMessagesTomids (line 14928) | def process_commitSendMessagesTomids(self, seqid, iprot, oprot):
method process_containsBuddyMember (line 14950) | def process_containsBuddyMember(self, seqid, iprot, oprot):
method process_downloadMessageContent (line 14972) | def process_downloadMessageContent(self, seqid, iprot, oprot):
method process_downloadMessageContentPreview (line 14994) | def process_downloadMessageContentPreview(self, seqid, iprot, oprot):
method process_downloadProfileImage (line 15016) | def process_downloadProfileImage(self, seqid, iprot, oprot):
method process_downloadProfileImagePreview (line 15038) | def process_downloadProfileImagePreview(self, seqid, iprot, oprot):
method process_getActiveMemberCountByBuddyMid (line 15060) | def process_getActiveMemberCountByBuddyMid(self, seqid, iprot, oprot):
method process_getActiveMemberMidsByBuddyMid (line 15082) | def process_getActiveMemberMidsByBuddyMid(self, seqid, iprot, oprot):
method process_getAllBuddyMembers (line 15104) | def process_getAllBuddyMembers(self, seqid, iprot, oprot):
method process_getBlockedBuddyMembers (line 15126) | def process_getBlockedBuddyMembers(self, seqid, iprot, oprot):
method process_getBlockerCountByBuddyMid (line 15148) | def process_getBlockerCountByBuddyMid(self, seqid, iprot, oprot):
method process_getBuddyDetailByMid (line 15170) | def process_getBuddyDetailByMid(self, seqid, iprot, oprot):
method process_getBuddyProfile (line 15192) | def process_getBuddyProfile(self, seqid, iprot, oprot):
method process_getContactTicket (line 15214) | def process_getContactTicket(self, seqid, iprot, oprot):
method process_getMemberCountByBuddyMid (line 15236) | def process_getMemberCountByBuddyMid(self, seqid, iprot, oprot):
method process_getSendBuddyMessageResult (line 15258) | def process_getSendBuddyMessageResult(self, seqid, iprot, oprot):
method process_getSetBuddyOnAirResult (line 15280) | def process_getSetBuddyOnAirResult(self, seqid, iprot, oprot):
method process_getUpdateBuddyProfileResult (line 15302) | def process_getUpdateBuddyProfileResult(self, seqid, iprot, oprot):
method process_isBuddyOnAirByMid (line 15324) | def process_isBuddyOnAirByMid(self, seqid, iprot, oprot):
method process_linkAndSendBuddyContentMessageToAllAsync (line 15346) | def process_linkAndSendBuddyContentMessageToAllAsync(self, seqid, ipro...
method process_linkAndSendBuddyContentMessageTomids (line 15368) | def process_linkAndSendBuddyContentMessageTomids(self, seqid, iprot, o...
method process_notifyBuddyBlocked (line 15390) | def process_notifyBuddyBlocked(self, seqid, iprot, oprot):
method process_notifyBuddyUnblocked (line 15412) | def process_notifyBuddyUnblocked(self, seqid, iprot, oprot):
method process_registerBuddy (line 15434) | def process_registerBuddy(self, seqid, iprot, oprot):
method process_registerBuddyAdmin (line 15456) | def process_registerBuddyAdmin(self, seqid, iprot, oprot):
method process_reissueContactTicket (line 15478) | def process_reissueContactTicket(self, seqid, iprot, oprot):
method process_removeBuddyMember (line 15500) | def process_removeBuddyMember(self, seqid, iprot, oprot):
method process_removeBuddyMembers (line 15522) | def process_removeBuddyMembers(self, seqid, iprot, oprot):
method process_sendBuddyContentMessageToAll (line 15544) | def process_sendBuddyContentMessageToAll(self, seqid, iprot, oprot):
method process_sendBuddyContentMessageToAllAsync (line 15566) | def process_sendBuddyContentMessageToAllAsync(self, seqid, iprot, oprot):
method process_sendBuddyContentMessageTomids (line 15588) | def process_sendBuddyContentMessageTomids(self, seqid, iprot, oprot):
method process_sendBuddyContentMessageTomidsAsync (line 15610) | def process_sendBuddyContentMessageTomidsAsync(self, seqid, iprot, opr...
method process_sendBuddyMessageToAll (line 15632) | def process_sendBuddyMessageToAll(self, seqid, iprot, oprot):
method process_sendBuddyMessageToAllAsync (line 15654) | def process_sendBuddyMessageToAllAsync(self, seqid, iprot, oprot):
method process_sendBuddyMessageTomids (line 15676) | def process_sendBuddyMessageTomids(self, seqid, iprot, oprot):
method process_sendBuddyMessageTomidsAsync (line 15698) | def process_sendBuddyMessageTomidsAsync(self, seqid, iprot, oprot):
method process_sendIndividualEventToAllAsync (line 15720) | def process_sendIndividualEventToAllAsync(self, seqid, iprot, oprot):
method process_setBuddyOnAir (line 15742) | def process_setBuddyOnAir(self, seqid, iprot, oprot):
method process_setBuddyOnAirAsync (line 15764) | def process_setBuddyOnAirAsync(self, seqid, iprot, oprot):
method process_storeMessage (line 15786) | def process_storeMessage(self, seqid, iprot, oprot):
method process_unblockBuddyMember (line 15808) | def process_unblockBuddyMember(self, seqid, iprot, oprot):
method process_unregisterBuddy (line 15830) | def process_unregisterBuddy(self, seqid, iprot, oprot):
method process_unregisterBuddyAdmin (line 15852) | def process_unregisterBuddyAdmin(self, seqid, iprot, oprot):
method process_updateBuddyAdminProfileAttribute (line 15874) | def process_updateBuddyAdminProfileAttribute(self, seqid, iprot, oprot):
method process_updateBuddyAdminProfileImage (line 15896) | def process_updateBuddyAdminProfileImage(self, seqid, iprot, oprot):
method process_updateBuddyProfileAttributes (line 15918) | def process_updateBuddyProfileAttributes(self, seqid, iprot, oprot):
method process_updateBuddyProfileAttributesAsync (line 15940) | def process_updateBuddyProfileAttributesAsync(self, seqid, iprot, oprot):
method process_updateBuddyProfileImage (line 15962) | def process_updateBuddyProfileImage(self, seqid, iprot, oprot):
method process_updateBuddyProfileImageAsync (line 15984) | def process_updateBuddyProfileImageAsync(self, seqid, iprot, oprot):
method process_updateBuddySearchId (line 16006) | def process_updateBuddySearchId(self, seqid, iprot, oprot):
method process_updateBuddySettings (line 16028) | def process_updateBuddySettings(self, seqid, iprot, oprot):
method process_uploadBuddyContent (line 16050) | def process_uploadBuddyContent(self, seqid, iprot, oprot):
method process_findBuddyContactsByQuery (line 16072) | def process_findBuddyContactsByQuery(self, seqid, iprot, oprot):
method process_getBuddyContacts (line 16094) | def process_getBuddyContacts(self, seqid, iprot, oprot):
method process_getBuddyDetail (line 16116) | def process_getBuddyDetail(self, seqid, iprot, oprot):
method process_getBuddyOnAir (line 16138) | def process_getBuddyOnAir(self, seqid, iprot, oprot):
method process_getCountriesHavingBuddy (line 16160) | def process_getCountriesHavingBuddy(self, seqid, iprot, oprot):
method process_getNewlyReleasedBuddyIds (line 16182) | def process_getNewlyReleasedBuddyIds(self, seqid, iprot, oprot):
method process_getPopularBuddyBanner (line 16204) | def process_getPopularBuddyBanner(self, seqid, iprot, oprot):
method process_getPopularBuddyLists (line 16226) | def process_getPopularBuddyLists(self, seqid, iprot, oprot):
method process_getPromotedBuddyContacts (line 16248) | def process_getPromotedBuddyContacts(self, seqid, iprot, oprot):
method process_activeBuddySubscriberCount (line 16270) | def process_activeBuddySubscriberCount(self, seqid, iprot, oprot):
method process_addOperationForChannel (line 16292) | def process_addOperationForChannel(self, seqid, iprot, oprot):
method process_displayBuddySubscriberCount (line 16314) | def process_displayBuddySubscriberCount(self, seqid, iprot, oprot):
method process_findContactByUseridWithoutAbuseBlockForChannel (line 16336) | def process_findContactByUseridWithoutAbuseBlockForChannel(self, seqid...
method process_getAllContactIdsForChannel (line 16358) | def process_getAllContactIdsForChannel(self, seqid, iprot, oprot):
method process_getCompactContacts (line 16380) | def process_getCompactContacts(self, seqid, iprot, oprot):
method process_getContactsForChannel (line 16402) | def process_getContactsForChannel(self, seqid, iprot, oprot):
method process_getDisplayName (line 16424) | def process_getDisplayName(self, seqid, iprot, oprot):
method process_getFavoriteMidsForChannel (line 16446) | def process_getFavoriteMidsForChannel(self, seqid, iprot, oprot):
method process_getFriendMids (line 16468) | def process_getFriendMids(self, seqid, iprot, oprot):
method process_getGroupMemberMids (line 16490) | def process_getGroupMemberMids(self, seqid, iprot, oprot):
method process_getGroupsForChannel (line 16512) | def process_getGroupsForChannel(self, seqid, iprot, oprot):
method process_getIdentityCredential (line 16534) | def process_getIdentityCredential(self, seqid, iprot, oprot):
method process_getJoinedGroupIdsForChannel (line 16556) | def process_getJoinedGroupIdsForChannel(self, seqid, iprot, oprot):
method process_getMetaProfile (line 16578) | def process_getMetaProfile(self, seqid, iprot, oprot):
method process_getMid (line 16600) | def process_getMid(self, seqid, iprot, oprot):
method process_getPrimaryClientForChannel (line 16622) | def process_getPrimaryClientForChannel(self, seqid, iprot, oprot):
method process_getProfileForChannel (line 16644) | def process_getProfileForChannel(self, seqid, iprot, oprot):
method process_getSimpleChannelContacts (line 16666) | def process_getSimpleChannelContacts(self, seqid, iprot, oprot):
method process_getUserCountryForBilling (line 16688) | def process_getUserCountryForBilling(self, seqid, iprot, oprot):
method process_getUserCreateTime (line 16710) | def process_getUserCreateTime(self, seqid, iprot, oprot):
method process_getUserIdentities (line 16732) | def process_getUserIdentities(self, seqid, iprot, oprot):
method process_getUserLanguage (line 16754) | def process_getUserLanguage(self, seqid, iprot, oprot):
method process_getUserMidsWhoAddedMe (line 16776) | def process_getUserMidsWhoAddedMe(self, seqid, iprot, oprot):
method process_isGroupMember (line 16798) | def process_isGroupMember(self, seqid, iprot, oprot):
method process_isInContact (line 16820) | def process_isInContact(self, seqid, iprot, oprot):
method process_registerChannelCP (line 16842) | def process_registerChannelCP(self, seqid, iprot, oprot):
method process_removeNotificationStatus (line 16864) | def process_removeNotificationStatus(self, seqid, iprot, oprot):
method process_sendMessageForChannel (line 16886) | def process_sendMessageForChannel(self, seqid, iprot, oprot):
method process_sendPinCodeOperation (line 16908) | def process_sendPinCodeOperation(self, seqid, iprot, oprot):
method process_updateProfileAttributeForChannel (line 16930) | def process_updateProfileAttributeForChannel(self, seqid, iprot, oprot):
method process_approveChannelAndIssueChannelToken (line 16952) | def process_approveChannelAndIssueChannelToken(self, seqid, iprot, opr...
method process_approveChannelAndIssueRequestToken (line 16974) | def process_approveChannelAndIssueRequestToken(self, seqid, iprot, opr...
method process_fetchNotificationItems (line 16996) | def process_fetchNotificationItems(self, seqid, iprot, oprot):
method process_getApprovedChannels (line 17018) | def process_getApprovedChannels(self, seqid, iprot, oprot):
method process_getChannelInfo (line 17040) | def process_getChannelInfo(self, seqid, iprot, oprot):
method process_getChannelNotificationSetting (line 17062) | def process_getChannelNotificationSetting(self, seqid, iprot, oprot):
method process_getChannelNotificationSettings (line 17084) | def process_getChannelNotificationSettings(self, seqid, iprot, oprot):
method process_getChannels (line 17106) | def process_getChannels(self, seqid, iprot, oprot):
method process_getDomains (line 17128) | def process_getDomains(self, seqid, iprot, oprot):
method process_getFriendChannelMatrices (line 17150) | def process_getFriendChannelMatrices(self, seqid, iprot, oprot):
method process_getNotificationBadgeCount (line 17172) | def process_getNotificationBadgeCount(self, seqid, iprot, oprot):
method process_issueChannelToken (line 17194) | def process_issueChannelToken(self, seqid, iprot, oprot):
method process_issueRequestToken (line 17216) | def process_issueRequestToken(self, seqid, iprot, oprot):
method process_issueRequestTokenWithAuthScheme (line 17238) | def process_issueRequestTokenWithAuthScheme(self, seqid, iprot, oprot):
method process_reserveCoinUse (line 17260) | def process_reserveCoinUse(self, seqid, iprot, oprot):
method process_revokeChannel (line 17282) | def process_revokeChannel(self, seqid, iprot, oprot):
method process_syncChannelData (line 17304) | def process_syncChannelData(self, seqid, iprot, oprot):
method process_updateChannelNotificationSetting (line 17326) | def process_updateChannelNotificationSetting(self, seqid, iprot, oprot):
method process_fetchMessageOperations (line 17348) | def process_fetchMessageOperations(self, seqid, iprot, oprot):
method process_getLastReadMessageIds (line 17370) | def process_getLastReadMessageIds(self, seqid, iprot, oprot):
method process_multiGetLastReadMessageIds (line 17392) | def process_multiGetLastReadMessageIds(self, seqid, iprot, oprot):
method process_buyCoinProduct (line 17414) | def process_buyCoinProduct(self, seqid, iprot, oprot):
method process_buyFreeProduct (line 17436) | def process_buyFreeProduct(self, seqid, iprot, oprot):
method process_buyMustbuyProduct (line 17458) | def process_buyMustbuyProduct(self, seqid, iprot, oprot):
method process_checkCanReceivePresent (line 17480) | def process_checkCanReceivePresent(self, seqid, iprot, oprot):
method process_getActivePurchases (line 17502) | def process_getActivePurchases(self, seqid, iprot, oprot):
method process_getActivePurchaseVersions (line 17524) | def process_getActivePurchaseVersions(self, seqid, iprot, oprot):
method process_getCoinProducts (line 17546) | def process_getCoinProducts(self, seqid, iprot, oprot):
method process_getCoinProductsByPgCode (line 17568) | def process_getCoinProductsByPgCode(self, seqid, iprot, oprot):
method process_getCoinPurchaseHistory (line 17590) | def process_getCoinPurchaseHistory(self, seqid, iprot, oprot):
method process_getCoinUseAndRefundHistory (line 17612) | def process_getCoinUseAndRefundHistory(self, seqid, iprot, oprot):
method process_getDownloads (line 17634) | def process_getDownloads(self, seqid, iprot, oprot):
method process_getEventPackages (line 17656) | def process_getEventPackages(self, seqid, iprot, oprot):
method process_getNewlyReleasedPackages (line 17678) | def process_getNewlyReleasedPackages(self, seqid, iprot, oprot):
method process_getPopularPackages (line 17700) | def process_getPopularPackages(self, seqid, iprot, oprot):
method process_getPresentsReceived (line 17722) | def process_getPresentsReceived(self, seqid, iprot, oprot):
method process_getPresentsSent (line 17744) | def process_getPresentsSent(self, seqid, iprot, oprot):
method process_getProduct (line 17766) | def process_getProduct(self, seqid, iprot, oprot):
method process_getProductList (line 17788) | def process_getProductList(self, seqid, iprot, oprot):
method process_getProductListWithCarrier (line 17810) | def process_getProductListWithCarrier(self, seqid, iprot, oprot):
method process_getProductWithCarrier (line 17832) | def process_getProductWithCarrier(self, seqid, iprot, oprot):
method process_getPurchaseHistory (line 17854) | def process_getPurchaseHistory(self, seqid, iprot, oprot):
method process_getTotalBalance (line 17876) | def process_getTotalBalance(self, seqid, iprot, oprot):
method process_notifyDownloaded (line 17898) | def process_notifyDownloaded(self, seqid, iprot, oprot):
method process_reserveCoinPurchase (line 17920) | def process_reserveCoinPurchase(self, seqid, iprot, oprot):
method process_reservePayment (line 17942) | def process_reservePayment(self, seqid, iprot, oprot):
method process_getSnsFriends (line 17964) | def process_getSnsFriends(self, seqid, iprot, oprot):
method process_getSnsMyProfile (line 17986) | def process_getSnsMyProfile(self, seqid, iprot, oprot):
method process_postSnsInvitationMessage (line 18008) | def process_postSnsInvitationMessage(self, seqid, iprot, oprot):
method process_acceptGroupInvitation (line 18030) | def process_acceptGroupInvitation(self, seqid, iprot, oprot):
method process_acceptGroupInvitationByTicket (line 18052) | def process_acceptGroupInvitationByTicket(self, seqid, iprot, oprot):
method process_acceptProximityMatches (line 18074) | def process_acceptProximityMatches(self, seqid, iprot, oprot):
method process_acquireCallRoute (line 18096) | def process_acquireCallRoute(self, seqid, iprot, oprot):
method process_acquireCallTicket (line 18118) | def process_acquireCallTicket(self, seqid, iprot, oprot):
method process_acquireEncryptedAccessToken (line 18140) | def process_acquireEncryptedAccessToken(self, seqid, iprot, oprot):
method process_addSnsId (line 18162) | def process_addSnsId(self, seqid, iprot, oprot):
method process_blockContact (line 18184) | def process_blockContact(self, seqid, iprot, oprot):
method process_blockRecommendation (line 18206) | def process_blockRecommendation(self, seqid, iprot, oprot):
method process_cancelGroupInvitation (line 18228) | def process_cancelGroupInvitation(self, seqid, iprot, oprot):
method process_changeVerificationMethod (line 18250) | def process_changeVerificationMethod(self, seqid, iprot, oprot):
method process_clearIdentityCredential (line 18272) | def process_clearIdentityCredential(self, seqid, iprot, oprot):
method process_clearMessageBox (line 18294) | def process_clearMessageBox(self, seqid, iprot, oprot):
method process_closeProximityMatch (line 18316) | def process_closeProximityMatch(self, seqid, iprot, oprot):
method process_commitSendMessage (line 18338) | def process_commitSendMessage(self, seqid, iprot, oprot):
method process_commitSendMessages (line 18360) | def process_commitSendMessages(self, seqid, iprot, oprot):
method process_commitUpdateProfile (line 18382) | def process_commitUpdateProfile(self, seqid, iprot, oprot):
method process_confirmEmail (line 18404) | def process_confirmEmail(self, seqid, iprot, oprot):
method process_createGroup (line 18426) | def process_createGroup(self, seqid, iprot, oprot):
method process_createQrcodeBase64Image (line 18448) | def process_createQrcodeBase64Image(self, seqid, iprot, oprot):
method process_createRoom (line 18470) | def process_createRoom(self, seqid, iprot, oprot):
method process_createSession (line 18492) | def process_createSession(self, seqid, iprot, oprot):
method process_fetchAnnouncements (line 18514) | def process_fetchAnnouncements(self, seqid, iprot, oprot):
method process_fetchMessages (line 18536) | def process_fetchMessages(self, seqid, iprot, oprot):
method process_fetchOperations (line 18558) | def process_fetchOperations(self, seqid, iprot, oprot):
method process_fetchOps (line 18580) | def process_fetchOps(self, seqid, iprot, oprot):
method process_findAndAddContactsByEmail (line 18602) | def process_findAndAddContactsByEmail(self, seqid, iprot, oprot):
method process_findAndAddContactsByMid (line 18624) | def process_findAndAddContactsByMid(self, seqid, iprot, oprot):
method process_findAndAddContactsByPhone (line 18646) | def process_findAndAddContactsByPhone(self, seqid, iprot, oprot):
method process_findAndAddContactsByUserid (line 18668) | def process_findAndAddContactsByUserid(self, seqid, iprot, oprot):
method process_findContactByUserid (line 18690) | def process_findContactByUserid(self, seqid, iprot, oprot):
method process_findContactByUserTicket (line 18712) | def process_findContactByUserTicket(self, seqid, iprot, oprot):
method process_findGroupByTicket (line 18734) | def process_findGroupByTicket(self, seqid, iprot, oprot):
method process_findContactsByEmail (line 18756) | def process_findContactsByEmail(self, seqid, iprot, oprot):
method process_findContactsByPhone (line 18778) | def process_findContactsByPhone(self, seqid, iprot, oprot):
method process_findSnsIdUserStatus (line 18800) | def process_findSnsIdUserStatus(self, seqid, iprot, oprot):
method process_finishUpdateVerification (line 18822) | def process_finishUpdateVerification(self, seqid, iprot, oprot):
method process_generateUserTicket (line 18844) | def process_generateUserTicket(self, seqid, iprot, oprot):
method process_getAcceptedProximityMatches (line 18866) | def process_getAcceptedProximityMatches(self, seqid, iprot, oprot):
method process_getActiveBuddySubscriberIds (line 18888) | def process_getActiveBuddySubscriberIds(self, seqid, iprot, oprot):
method process_getAllContactIds (line 18910) | def process_getAllContactIds(self, seqid, iprot, oprot):
method process_getAuthQrcode (line 18932) | def process_getAuthQrcode(self, seqid, iprot, oprot):
method process_getBlockedContactIds (line 18954) | def process_getBlockedContactIds(self, seqid, iprot, oprot):
method process_getBlockedContactIdsByRange (line 18976) | def process_getBlockedContactIdsByRange(self, seqid, iprot, oprot):
method process_getBlockedRecommendationIds (line 18998) | def process_getBlockedRecommendationIds(self, seqid, iprot, oprot):
method process_getBuddyBlockerIds (line 19020) | def process_getBuddyBlockerIds(self, seqid, iprot, oprot):
method process_getBuddyLocation (line 19042) | def process_getBuddyLocation(self, seqid, iprot, oprot):
method process_getCompactContactsModifiedSince (line 19064) | def process_getCompactContactsModifiedSince(self, seqid, iprot, oprot):
method process_getCompactGroup (line 19086) | def process_getCompactGroup(self, seqid, iprot, oprot):
method process_getCompactRoom (line 19108) | def process_getCompactRoom(self, seqid, iprot, oprot):
method process_getContact (line 19130) | def process_getContact(self, seqid, iprot, oprot):
method process_getContacts (line 19152) | def process_getContacts(self, seqid, iprot, oprot):
method process_getCountryWithRequestIp (line 19174) | def process_getCountryWithRequestIp(self, seqid, iprot, oprot):
method process_getFavoriteMids (line 19196) | def process_getFavoriteMids(self, seqid, iprot, oprot):
method process_getGroup (line 19218) | def process_getGroup(self, seqid, iprot, oprot):
method process_getGroupIdsInvited (line 19240) | def process_getGroupIdsInvited(self, seqid, iprot, oprot):
method process_getGroupIdsJoined (line 19262) | def process_getGroupIdsJoined(self, seqid, iprot, oprot):
method process_getGroups (line 19284) | def process_getGroups(self, seqid, iprot, oprot):
method process_getHiddenContactMids (line 19306) | def process_getHiddenContactMids(self, seqid, iprot, oprot):
method process_getIdentityIdentifier (line 19328) | def process_getIdentityIdentifier(self, seqid, iprot, oprot):
method process_getLastAnnouncementIndex (line 19350) | def process_getLastAnnouncementIndex(self, seqid, iprot, oprot):
method process_getLastOpRevision (line 19372) | def process_getLastOpRevision(self, seqid, iprot, oprot):
method process_getMessageBox (line 19394) | def process_getMessageBox(self, seqid, iprot, oprot):
method process_getMessageBoxCompactWrapUp (line 19416) | def process_getMessageBoxCompactWrapUp(self, seqid, iprot, oprot):
method process_getMessageBoxCompactWrapUpList (line 19438) | def process_getMessageBoxCompactWrapUpList(self, seqid, iprot, oprot):
method process_getMessageBoxList (line 19460) | def process_getMessageBoxList(self, seqid, iprot, oprot):
method process_getMessageBoxListByStatus (line 19482) | def process_getMessageBoxListByStatus(self, seqid, iprot, oprot):
method process_getMessageBoxWrapUp (line 19504) | def process_getMessageBoxWrapUp(self, seqid, iprot, oprot):
method process_getMessageBoxWrapUpList (line 19526) | def process_getMessageBoxWrapUpList(self, seqid, iprot, oprot):
method process_getMessagesBySequenceNumber (line 19548) | def process_getMessagesBySequenceNumber(self, seqid, iprot, oprot):
method process_getNextMessages (line 19570) | def process_getNextMessages(self, seqid, iprot, oprot):
method process_getNotificationPolicy (line 19592) | def process_getNotificationPolicy(self, seqid, iprot, oprot):
method process_getPreviousMessages (line 19614) | def process_getPreviousMessages(self, seqid, iprot, oprot):
method process_getProfile (line 19636) | def process_getProfile(self, seqid, iprot, oprot):
method process_getProximityMatchCandidateList (line 19658) | def process_getProximityMatchCandidateList(self, seqid, iprot, oprot):
method process_getProximityMatchCandidates (line 19680) | def process_getProximityMatchCandidates(self, seqid, iprot, oprot):
method process_getRecentMessages (line 19702) | def process_getRecentMessages(self, seqid, iprot, oprot):
method process_getRecommendationIds (line 19724) | def process_getRecommendationIds(self, seqid, iprot, oprot):
method process_getRoom (line 19746) | def process_getRoom(self, seqid, iprot, oprot):
method process_getRSAKeyInfo (line 19768) | def process_getRSAKeyInfo(self, seqid, iprot, oprot):
method process_getServerTime (line 19790) | def process_getServerTime(self, seqid, iprot, oprot):
method process_getSessions (line 19812) | def process_getSessions(self, seqid, iprot, oprot):
method process_getSettings (line 19834) | def process_getSettings(self, seqid, iprot, oprot):
method process_getSettingsAttributes (line 19856) | def process_getSettingsAttributes(self, seqid, iprot, oprot):
method process_getSystemConfiguration (line 19878) | def process_getSystemConfiguration(self, seqid, iprot, oprot):
method process_getUserTicket (line 19900) | def process_getUserTicket(self, seqid, iprot, oprot):
method process_getWapInvitation (line 19922) | def process_getWapInvitation(self, seqid, iprot, oprot):
method process_invalidateUserTicket (line 19944) | def process_invalidateUserTicket(self, seqid, iprot, oprot):
method process_inviteFriendsBySms (line 19966) | def process_inviteFriendsBySms(self, seqid, iprot, oprot):
method process_inviteIntoGroup (line 19988) | def process_inviteIntoGroup(self, seqid, iprot, oprot):
method process_inviteIntoRoom (line 20010) | def process_inviteIntoRoom(self, seqid, iprot, oprot):
method process_inviteViaEmail (line 20032) | def process_inviteViaEmail(self, seqid, iprot, oprot):
method process_isIdentityIdentifierAvailable (line 20054) | def process_isIdentityIdentifierAvailable(self, seqid, iprot, oprot):
method process_isUseridAvailable (line 20076) | def process_isUseridAvailable(self, seqid, iprot, oprot):
method process_kickoutFromGroup (line 20098) | def process_kickoutFromGroup(self, seqid, iprot, oprot):
method process_leaveGroup (line 20120) | def process_leaveGroup(self, seqid, iprot, oprot):
method process_leaveRoom (line 20142) | def process_leaveRoom(self, seqid, iprot, oprot):
method process_loginWithIdentityCredential (line 20164) | def process_loginWithIdentityCredential(self, seqid, iprot, oprot):
method process_loginWithIdentityCredentialForCertificate (line 20186) | def process_loginWithIdentityCredentialForCertificate(self, seqid, ipr...
method process_loginWithVerifier (line 20208) | def process_loginWithVerifier(self, seqid, iprot, oprot):
method process_loginWithVerifierForCerificate (line 20230) | def process_loginWithVerifierForCerificate(self, seqid, iprot, oprot):
method process_loginWithVerifierForCertificate (line 20252) | def process_loginWithVerifierForCertificate(self, seqid, iprot, oprot):
method process_logout (line 20274) | def process_logout(self, seqid, iprot, oprot):
method process_logoutSession (line 20296) | def process_logoutSession(self, seqid, iprot, oprot):
method process_noop (line 20318) | def process_noop(self, seqid, iprot, oprot):
method process_notifiedRedirect (line 20340) | def process_notifiedRedirect(self, seqid, iprot, oprot):
method process_notifyBuddyOnAir (line 20362) | def process_notifyBuddyOnAir(self, seqid, iprot, oprot):
method process_notifyIndividualEvent (line 20384) | def process_notifyIndividualEvent(self, seqid, iprot, oprot):
method process_notifyInstalled (line 20406) | def process_notifyInstalled(self, seqid, iprot, oprot):
method process_notifyRegistrationComplete (line 20425) | def process_notifyRegistrationComplete(self, seqid, iprot, oprot):
method process_notifySleep (line 20444) | def process_notifySleep(self, seqid, iprot, oprot):
method process_notifyUpdated (line 20466) | def process_notifyUpdated(self, seqid, iprot, oprot):
method process_openProximityMatch (line 20488) | def process_openProximityMatch(self, seqid, iprot, oprot):
method process_registerBuddyUser (line 20510) | def process_registerBuddyUser(self, seqid, iprot, oprot):
method process_registerBuddyUserid (line 20532) | def process_registerBuddyUserid(self, seqid, iprot, oprot):
method process_registerDevice (line 20554) | def process_registerDevice(self, seqid, iprot, oprot):
method process_registerDeviceWithIdentityCredential (line 20576) | def process_registerDeviceWithIdentityCredential(self, seqid, iprot, o...
method process_registerDeviceWithoutPhoneNumber (line 20598) | def process_registerDeviceWithoutPhoneNumber(self, seqid, iprot, oprot):
method process_registerDeviceWithoutPhoneNumberWithIdentityCredential (line 20620) | def process_registerDeviceWithoutPhoneNumberWithIdentityCredential(sel...
method process_registerUserid (line 20642) | def process_registerUserid(self, seqid, iprot, oprot):
method process_registerWapDevice (line 20664) | def process_registerWapDevice(self, seqid, iprot, oprot):
method process_registerWithExistingSnsIdAndIdentityCredential (line 20686) | def process_registerWithExistingSnsIdAndIdentityCredential(self, seqid...
method process_registerWithSnsId (line 20708) | def process_registerWithSnsId(self, seqid, iprot, oprot):
method process_registerWithSnsIdAndIdentityCredential (line 20730) | def process_registerWithSnsIdAndIdentityCredential(self, seqid, iprot,...
method process_reissueDeviceCredential (line 20752) | def process_reissueDeviceCredential(self, seqid, iprot, oprot):
method process_reissueUserTicket (line 20774) | def process_reissueUserTicket(self, seqid, iprot, oprot):
method process_reissueGroupTicket (line 20796) | def process_reissueGroupTicket(self, seqid, iprot, oprot):
method process_rejectGroupInvitation (line 20819) | def process_rejectGroupInvitation(self, seqid, iprot, oprot):
method process_releaseSession (line 20841) | def process_releaseSession(self, seqid, iprot, oprot):
method process_removeAllMessages (line 20863) | def process_removeAllMessages(self, seqid, iprot, oprot):
method process_removeBuddyLocation (line 20885) | def process_removeBuddyLocation(self, seqid, iprot, oprot):
method process_removeMessage (line 20907) | def process_removeMessage(self, seqid, iprot, oprot):
method process_removeMessageFromMyHome (line 20929) | def process_removeMessageFromMyHome(self, seqid, iprot, oprot):
method process_removeSnsId (line 20951) | def process_removeSnsId(self, seqid, iprot, oprot):
method process_report (line 20973) | def process_report(self, seqid, iprot, oprot):
method process_reportContacts (line 20995) | def process_reportContacts(self, seqid, iprot, oprot):
method process_reportGroups (line 21017) | def process_reportGroups(self, seqid, iprot, oprot):
method process_reportProfile (line 21039) | def process_reportProfile(self, seqid, iprot, oprot):
method process_reportRooms (line 21061) | def process_reportRooms(self, seqid, iprot, oprot):
method process_reportSettings (line 21083) | def process_reportSettings(self, seqid, iprot, oprot):
method process_reportSpammer (line 21105) | def process_reportSpammer(self, seqid, iprot, oprot):
method process_requestAccountPasswordReset (line 21127) | def process_requestAccountPasswordReset(self, seqid, iprot, oprot):
method process_requestEmailConfirmation (line 21149) | def process_requestEmailConfirmation(self, seqid, iprot, oprot):
method process_requestIdentityUnbind (line 21171) | def process_requestIdentityUnbind(self, seqid, iprot, oprot):
method process_resendEmailConfirmation (line 21193) | def process_resendEmailConfirmation(self, seqid, iprot, oprot):
method process_resendPinCode (line 21215) | def process_resendPinCode(self, seqid, iprot, oprot):
method process_resendPinCodeBySMS (line 21237) | def process_resendPinCodeBySMS(self, seqid, iprot, oprot):
method process_sendChatChecked (line 21259) | def process_sendChatChecked(self, seqid, iprot, oprot):
method process_sendChatRemoved (line 21281) | def process_sendChatRemoved(self, seqid, iprot, oprot):
method process_sendContentPreviewUpdated (line 21303) | def process_sendContentPreviewUpdated(self, seqid, iprot, oprot):
method process_sendContentReceipt (line 21325) | def process_sendContentReceipt(self, seqid, iprot, oprot):
method process_sendDummyPush (line 21347) | def process_sendDummyPush(self, seqid, iprot, oprot):
method process_sendEvent (line 21369) | def process_sendEvent(self, seqid, iprot, oprot):
method process_sendMessage (line 21391) | def process_sendMessage(self, seqid, iprot, oprot):
method process_sendMessageIgnored (line 21413) | def process_sendMessageIgnored(self, seqid, iprot, oprot):
method process_sendMessageReceipt (line 21435) | def process_sendMessageReceipt(self, seqid, iprot, oprot):
method process_sendMessageToMyHome (line 21457) | def process_sendMessageToMyHome(self, seqid, iprot, oprot):
method process_setBuddyLocation (line 21479) | def process_setBuddyLocation(self, seqid, iprot, oprot):
method process_setIdentityCredential (line 21501) | def process_setIdentityCredential(self, seqid, iprot, oprot):
method process_setNotificationsEnabled (line 21523) | def process_setNotificationsEnabled(self, seqid, iprot, oprot):
method process_startUpdateVerification (line 21545) | def process_startUpdateVerification(self, seqid, iprot, oprot):
method process_startVerification (line 21567) | def process_startVerification(self, seqid, iprot, oprot):
method process_storeUpdateProfileAttribute (line 21589) | def process_storeUpdateProfileAttribute(self, seqid, iprot, oprot):
method process_syncContactBySnsIds (line 21611) | def process_syncContactBySnsIds(self, seqid, iprot, oprot):
method process_syncContacts (line 21633) | def process_syncContacts(self, seqid, iprot, oprot):
method process_trySendMessage (line 21655) | def process_trySendMessage(self, seqid, iprot, oprot):
method process_unblockContact (line 21677) | def process_unblockContact(self, seqid, iprot, oprot):
method process_unblockRecommendation (line 21699) | def process_unblockRecommendation(self, seqid, iprot, oprot):
method process_unregisterUserAndDevice (line 21721) | def process_unregisterUserAndDevice(self, seqid, iprot, oprot):
method process_updateApnsDeviceToken (line 21743) | def process_updateApnsDeviceToken(self, seqid, iprot, oprot):
method process_updateBuddySetting (line 21765) | def process_updateBuddySetting(self, seqid, iprot, oprot):
method process_updateC2DMRegistrationId (line 21787) | def process_updateC2DMRegistrationId(self, seqid, iprot, oprot):
method process_updateContactSetting (line 21809) | def process_updateContactSetting(self, seqid, iprot, oprot):
method process_updateCustomModeSettings (line 21831) | def process_updateCustomModeSettings(self, seqid, iprot, oprot):
method process_updateDeviceInfo (line 21853) | def process_updateDeviceInfo(self, seqid, iprot, oprot):
method process_updateGroup (line 21875) | def process_updateGroup(self, seqid, iprot, oprot):
method process_updateNotificationToken (line 21897) | def process_updateNotificationToken(self, seqid, iprot, oprot):
method process_updateNotificationTokenWithBytes (line 21919) | def process_updateNotificationTokenWithBytes(self, seqid, iprot, oprot):
method process_updateProfile (line 21941) | def process_updateProfile(self, seqid, iprot, oprot):
method process_updateProfileAttribute (line 21963) | def process_updateProfileAttribute(self, seqid, iprot, oprot):
method process_updateRegion (line 21985) | def process_updateRegion(self, seqid, iprot, oprot):
method process_updateSettings (line 22007) | def process_updateSettings(self, seqid, iprot, oprot):
method process_updateSettings2 (line 22029) | def process_updateSettings2(self, seqid, iprot, oprot):
method process_updateSettingsAttribute (line 22051) | def process_updateSettingsAttribute(self, seqid, iprot, oprot):
method process_updateSettingsAttributes (line 22073) | def process_updateSettingsAttributes(self, seqid, iprot, oprot):
method process_verifyIdentityCredential (line 22095) | def process_verifyIdentityCredential(self, seqid, iprot, oprot):
method process_verifyIdentityCredentialWithResult (line 22117) | def process_verifyIdentityCredentialWithResult(self, seqid, iprot, opr...
method process_verifyPhone (line 22139) | def process_verifyPhone(self, seqid, iprot, oprot):
method process_verifyQrcode (line 22161) | def process_verifyQrcode(self, seqid, iprot, oprot):
method process_notify (line 22183) | def process_notify(self, seqid, iprot, oprot):
class getRSAKey_args (line 22208) | class getRSAKey_args:
method read (line 22213) | def read(self, iprot):
method write (line 22227) | def write(self, oprot):
method validate (line 22235) | def validate(self):
method __hash__ (line 22239) | def __hash__(self):
method __repr__ (line 22243) | def __repr__(self):
method __eq__ (line 22248) | def __eq__(self, other):
method __ne__ (line 22251) | def __ne__(self, other):
class getRSAKey_result (line 22254) | class getRSAKey_result:
method __init__ (line 22266) | def __init__(self, success=None, e=None,):
method read (line 22270) | def read(self, iprot):
method write (line 22296) | def write(self, oprot):
method validate (line 22312) | def validate(self):
method __hash__ (line 22316) | def __hash__(self):
method __repr__ (line 22322) | def __repr__(self):
method __eq__ (line 22327) | def __eq__(self, other):
method __ne__ (line 22330) | def __ne__(self, other):
class notifyEmailConfirmationResult_args (line 22333) | class notifyEmailConfirmationResult_args:
method __init__ (line 22345) | def __init__(self, parameterMap=None,):
method read (line 22348) | def read(self, iprot):
method write (line 22373) | def write(self, oprot):
method validate (line 22389) | def validate(self):
method __hash__ (line 22393) | def __hash__(self):
method __repr__ (line 22398) | def __repr__(self):
method __eq__ (line 22403) | def __eq__(self, other):
method __ne__ (line 22406) | def __ne__(self, other):
class notifyEmailConfirmationResult_result (line 22409) | class notifyEmailConfirmationResult_result:
method __init__ (line 22420) | def __init__(self, e=None,):
method read (line 22423) | def read(self, iprot):
method write (line 22443) | def write(self, oprot):
method validate (line 22455) | def validate(self):
method __hash__ (line 22459) | def __hash__(self):
method __repr__ (line 22464) | def __repr__(self):
method __eq__ (line 22469) | def __eq__(self, other):
method __ne__ (line 22472) | def __ne__(self, other):
class registerVirtualAccount_args (line 22475) | class registerVirtualAccount_args:
method __init__ (line 22491) | def __init__(self, locale=None, encryptedVirtualUserId=None, encrypted...
method read (line 22496) | def read(self, iprot):
method write (line 22525) | def write(self, oprot):
method validate (line 22545) | def validate(self):
method __hash__ (line 22549) | def __hash__(self):
method __repr__ (line 22556) | def __repr__(self):
method __eq__ (line 22561) | def __eq__(self, other):
method __ne__ (line 22564) | def __ne__(self, other):
class registerVirtualAccount_result (line 22567) | class registerVirtualAccount_result:
method __init__ (line 22579) | def __init__(self, success=None, e=None,):
method read (line 22583) | def read(self, iprot):
method write (line 22608) | def write(self, oprot):
method validate (line 22624) | def validate(self):
method __hash__ (line 22628) | def __hash__(self):
method __repr__ (line 22634) | def __repr__(self):
method __eq__ (line 22639) | def __eq__(self, other):
method __ne__ (line 22642) | def __ne__(self, other):
class requestVirtualAccountPasswordChange_args (line 22645) | class requestVirtualAccountPasswordChange_args:
method __init__ (line 22663) | def __init__(self, virtualMid=None, encryptedVirtualUserId=None, encry...
method read (line 22669) | def read(self, iprot):
method write (line 22703) | def write(self, oprot):
method validate (line 22727) | def validate(self):
method __hash__ (line 22731) | def __hash__(self):
method __repr__ (line 22739) | def __repr__(self):
method __eq__ (line 22744) | def __eq__(self, other):
method __ne__ (line 22747) | def __ne__(self, other):
class requestVirtualAccountPasswordChange_result (line 22750) | class requestVirtualAccountPasswordChange_result:
method __init__ (line 22761) | def __init__(self, e=None,):
method read (line 22764) | def read(self, iprot):
method write (line 22784) | def write(self, oprot):
method validate (line 22796) | def validate(self):
method __hash__ (line 22800) | def __hash__(self):
method __repr__ (line 22805) | def __repr__(self):
method __eq__ (line 22810) | def __eq__(self, other):
method __ne__ (line 22813) | def __ne__(self, other):
class requestVirtualAccountPasswordSet_args (line 22816) | class requestVirtualAccountPasswordSet_args:
method __init__ (line 22832) | def __init__(self, virtualMid=None, encryptedVirtualUserId=None, encry...
method read (line 22837) | def read(self, iprot):
method write (line 22866) | def write(self, oprot):
method validate (line 22886) | def validate(self):
method __hash__ (line 22890) | def __hash__(self):
method __repr__ (line 22897) | def __repr__(self):
method __eq__ (line 22902) | def __eq__(self, other):
method __ne__ (line 22905) | def __ne__(self, other):
class requestVirtualAccountPasswordSet_result (line 22908) | class requestVirtualAccountPasswordSet_result:
method __init__ (line 22919) | def __init__(self, e=None,):
method read (line 22922) | def read(self, iprot):
method write (line 22942) | def write(self, oprot):
method validate (line 22954) | def validate(self):
method __hash__ (line 22958) | def __hash__(self):
method __repr__ (line 22963) | def __repr__(self):
method __eq__ (line 22968) | def __eq__(self, other):
method __ne__ (line 22971) | def __ne__(self, other):
class unregisterVirtualAccount_args (line 22974) | class unregisterVirtualAccount_args:
method __init__ (line 22986) | def __init__(self, virtualMid=None,):
method read (line 22989) | def read(self, iprot):
method write (line 23008) | def write(self, oprot):
method validate (line 23020) | def validate(self):
method __hash__ (line 23024) | def __hash__(self):
method __repr__ (line 23029) | def __repr__(self):
method __eq__ (line 23034) | def __eq__(self, other):
method __ne__ (line 23037) | def __ne__(self, other):
class unregisterVirtualAccount_result (line 23040) | class unregisterVirtualAccount_result:
method __init__ (line 23051) | def __init__(self, e=None,):
method read (line 23054) | def read(self, iprot):
method write (line 23074) | def write(self, oprot):
method validate (line 23086) | def validate(self):
method __hash__ (line 23090) | def __hash__(self):
method __repr__ (line 23095) | def __repr__(self):
method __eq__ (line 23100) | def __eq__(self, other):
method __ne__ (line 23103) | def __ne__(self, other):
class checkUserAge_args (line 23106) | class checkUserAge_args:
method __init__ (line 23124) | def __init__(self, carrier=None, sessionId=None, verifier=None, standa...
method read (line 23130) | def read(self, iprot):
method write (line 23164) | def write(self, oprot):
method validate (line 23188) | def validate(self):
method __hash__ (line 23192) | def __hash__(self):
method __repr__ (line 23200) | def __repr__(self):
method __eq__ (line 23205) | def __eq__(self, other):
method __ne__ (line 23208) | def __ne__(self, other):
class checkUserAge_result (line 23211) | class checkUserAge_result:
method __init__ (line 23223) | def __init__(self, success=None, e=None,):
method read (line 23227) | def read(self, iprot):
method write (line 23252) | def write(self, oprot):
method validate (line 23268) | def validate(self):
method __hash__ (line 23272) | def __hash__(self):
method __repr__ (line 23278) | def __repr__(self):
method __eq__ (line 23283) | def __eq__(self, other):
method __ne__ (line 23286) | def __ne__(self, other):
class checkUserAgeWithDocomo_args (line 23289) | class checkUserAgeWithDocomo_args:
method __init__ (line 23305) | def __init__(self, openIdRedirectUrl=None, standardAge=None, verifier=...
method read (line 23310) | def read(self, iprot):
method write (line 23339) | def write(self, oprot):
method validate (line 23359) | def validate(self):
method __hash__ (line 23363) | def __hash__(self):
method __repr__ (line 23370) | def __repr__(self):
method __eq__ (line 23375) | def __eq__(self, other):
method __ne__ (line 23378) | def __ne__(self, other):
class checkUserAgeWithDocomo_result (line 23381) | class checkUserAgeWithDocomo_result:
method __init__ (line 23393) | def __init__(self, success=None, e=None,):
method read (line 23397) | def read(self, iprot):
method write (line 23423) | def write(self, oprot):
method validate (line 23439) | def validate(self):
method __hash__ (line 23443) | def __hash__(self):
method __repr__ (line 23449) | def __repr__(self):
method __eq__ (line 23454) | def __eq__(self, other):
method __ne__ (line 23457) | def __ne__(self, other):
class retrieveOpenIdAuthUrlWithDocomo_args (line 23460) | class retrieveOpenIdAuthUrlWithDocomo_args:
method read (line 23465) | def read(self, iprot):
method write (line 23479) | def write(self, oprot):
method validate (line 23487) | def validate(self):
method __hash__ (line 23491) | def __hash__(self):
method __repr__ (line 23495) | def __repr__(self):
method __eq__ (line 23500) | def __eq__(self, other):
method __ne__ (line 23503) | def __ne__(self, other):
class retrieveOpenIdAuthUrlWithDocomo_result (line 23506) | class retrieveOpenIdAuthUrlWithDocomo_result:
method __init__ (line 23518) | def __init__(self, success=None, e=None,):
method read (line 23522) | def read(self, iprot):
method write (line 23547) | def write(self, oprot):
method validate (line 23563) | def validate(self):
method __hash__ (line 23567) | def __hash__(self):
method __repr__ (line 23573) | def __repr__(self):
method __eq__ (line 23578) | def __eq__(self, other):
method __ne__ (line 23581) | def __ne__(self, other):
class retrieveRequestToken_args (line 23584) | class retrieveRequestToken_args:
method __init__ (line 23596) | def __init__(self, carrier=None,):
method read (line 23599) | def read(self, iprot):
method write (line 23618) | def write(self, oprot):
method validate (line 23630) | def validate(self):
method __hash__ (line 23634) | def __hash__(self):
method __repr__ (line 23639) | def __repr__(self):
method __eq__ (line 23644) | def __eq__(self, other):
method __ne__ (line 23647) | def __ne__(self, other):
class retrieveRequestToken_result (line 23650) | class retrieveRequestToken_result:
method __init__ (line 23662) | def __init__(self, success=None, e=None,):
method read (line 23666) | def read(self, iprot):
method write (line 23692) | def write(self, oprot):
method validate (line 23708) | def validate(self):
method __hash__ (line 23712) | def __hash__(self):
method __repr__ (line 23718) | def __repr__(self):
method __eq__ (line 23723) | def __eq__(self, other):
method __ne__ (line 23726) | def __ne__(self, other):
class addBuddyMember_args (line 23729) | class addBuddyMember_args:
method __init__ (line 23742) | def __init__(self, requestId=None, userMid=None,):
method read (line 23746) | def read(self, iprot):
method write (line 23770) | def write(self, oprot):
method validate (line 23786) | def validate(self):
method __hash__ (line 23790) | def __hash__(self):
method __repr__ (line 23796) | def __repr__(self):
method __eq__ (line 23801) | def __eq__(self, other):
method __ne__ (line 23804) | def __ne__(self, other):
class addBuddyMember_result (line 23807) | class addBuddyMember_result:
method __init__ (line 23818) | def __init__(self, e=None,):
method read (line 23821) | def read(self, iprot):
method write (line 23841) | def write(self, oprot):
method validate (line 23853) | def validate(self):
method __hash__ (line 23857) | def __hash__(self):
method __repr__ (line 23862) | def __repr__(self):
method __eq__ (line 23867) | def __eq__(self, other):
method __ne__ (line 23870) | def __ne__(self, other):
class addBuddyMembers_args (line 23873) | class addBuddyMembers_args:
method __init__ (line 23886) | def __init__(self, requestId=None, userMids=None,):
method read (line 23890) | def read(self, iprot):
method write (line 23919) | def write(self, oprot):
method validate (line 23938) | def validate(self):
method __hash__ (line 23942) | def __hash__(self):
method __repr__ (line 23948) | def __repr__(self):
method __eq__ (line 23953) | def __eq__(self, other):
method __ne__ (line 23956) | def __ne__(self, other):
class addBuddyMembers_result (line 23959) | class addBuddyMembers_result:
method __init__ (line 23970) | def __init__(self, e=None,):
method read (line 23973) | def read(self, iprot):
method write (line 23993) | def write(self, oprot):
method validate (line 24005) | def validate(self):
method __hash__ (line 24009) | def __hash__(self):
method __repr__ (line 24014) | def __repr__(self):
method __eq__ (line 24019) | def __eq__(self, other):
method __ne__ (line 24022) | def __ne__(self, other):
class blockBuddyMember_args (line 24025) | class blockBuddyMember_args:
method __init__ (line 24038) | def __init__(self, requestId=None, mid=None,):
method read (line 24042) | def read(self, iprot):
method write (line 24066) | def write(self, oprot):
method validate (line 24082) | def validate(self):
method __hash__ (line 24086) | def __hash__(self):
method __repr__ (line 24092) | def __repr__(self):
method __eq__ (line 24097) | def __eq__(self, other):
method __ne__ (line 24100) | def __ne__(self, other):
class blockBuddyMember_result (line 24103) | class blockBuddyMember_result:
method __init__ (line 24114) | def __init__(self, e=None,):
method read (line 24117) | def read(self, iprot):
method write (line 24137) | def write(self, oprot):
method validate (line 24149) | def validate(self):
method __hash__ (line 24153) | def __hash__(self):
method __repr__ (line 24158) | def __repr__(self):
method __eq__ (line 24163) | def __eq__(self, other):
method __ne__ (line 24166) | def __ne__(self, other):
class commitSendMessagesToAll_args (line 24169) | class commitSendMessagesToAll_args:
method __init__ (line 24180) | def __init__(self, requestIdList=None,):
method read (line 24183) | def read(self, iprot):
method write (line 24207) | def write(self, oprot):
method validate (line 24222) | def validate(self):
method __hash__ (line 24226) | def __hash__(self):
method __repr__ (line 24231) | def __repr__(self):
method __eq__ (line 24236) | def __eq__(self, other):
method __ne__ (line 24239) | def __ne__(self, other):
class commitSendMessagesToAll_result (line 24242) | class commitSendMessagesToAll_result:
method __init__ (line 24254) | def __init__(self, success=None, e=None,):
method read (line 24258) | def read(self, iprot):
method write (line 24289) | def write(self, oprot):
method validate (line 24308) | def validate(self):
method __hash__ (line 24312) | def __hash__(self):
method __repr__ (line 24318) | def __repr__(self):
method __eq__ (line 24323) | def __eq__(self, other):
method __ne__ (line 24326) | def __ne__(self, other):
class commitSendMessagesTomids_args (line 24329) | class commitSendMessagesTomids_args:
method __init__ (line 24342) | def __init__(self, requestIdList=None, mids=None,):
method read (line 24346) | def read(self, iprot):
method write (line 24380) | def write(self, oprot):
method validate (line 24402) | def validate(self):
method __hash__ (line 24406) | def __hash__(self):
method __repr__ (line 24412) | def __repr__(self):
method __eq__ (line 24417) | def __eq__(self, other):
method __ne__ (line 24420) | def __ne__(self, other):
class commitSendMessagesTomids_result (line 24423) | class commitSendMessagesTomids_result:
method __init__ (line 24435) | def __init__(self, success=None, e=None,):
method read (line 24439) | def read(self, iprot):
method write (line 24470) | def write(self, oprot):
method validate (line 24489) | def validate(self):
method __hash__ (line 24493) | def __hash__(self):
method __repr__ (line 24499) | def __repr__(self):
method __eq__ (line 24504) | def __eq__(self, other):
method __ne__ (line 24507) | def __ne__(self, other):
class containsBuddyMember_args (line 24510) | class containsBuddyMember_args:
method __init__ (line 24523) | def __init__(self, requestId=None, userMid=None,):
method read (line 24527) | def read(self, iprot):
method write (line 24551) | def write(self, oprot):
method validate (line 24567) | def validate(self):
method __hash__ (line 24571) | def __hash__(self):
method __repr__ (line 24577) | def __repr__(self):
method __eq__ (line 24582) | def __eq__(self, other):
method __ne__ (line 24585) | def __ne__(self, other):
class containsBuddyMember_result (line 24588) | class containsBuddyMember_result:
method __init__ (line 24600) | def __init__(self, success=None, e=None,):
method read (line 24604) | def read(self, iprot):
method write (line 24629) | def write(self, oprot):
method validate (line 24645) | def validate(self):
method __hash__ (line 24649) | def __hash__(self):
method __repr__ (line 24655) | def __repr__(self):
method __eq__ (line 24660) | def __eq__(self, other):
method __ne__ (line 24663) | def __ne__(self, other):
class downloadMessageContent_args (line 24666) | class downloadMessageContent_args:
method __init__ (line 24679) | def __init__(self, requestId=None, messageId=None,):
method read (line 24683) | def read(self, iprot):
method write (line 24707) | def write(self, oprot):
method validate (line 24723) | def validate(self):
method __hash__ (line 24727) | def __hash__(self):
method __repr__ (line 24733) | def __repr__(self):
method __eq__ (line 24738) | def __eq__(self, other):
method __ne__ (line 24741) | def __ne__(self, other):
class downloadMessageContent_result (line 24744) | class downloadMessageContent_result:
method __init__ (line 24756) | def __init__(self, success=None, e=None,):
method read (line 24760) | def read(self, iprot):
method write (line 24785) | def write(self, oprot):
method validate (line 24801) | def validate(self):
method __hash__ (line 24805) | def __hash__(self):
method __repr__ (line 24811) | def __repr__(self):
method __eq__ (line 24816) | def __eq__(self, other):
method __ne__ (line 24819) | def __ne__(self, other):
class downloadMessageContentPreview_args (line 24822) | class downloadMessageContentPreview_args:
method __init__ (line 24835) | def __init__(self, requestId=None, messageId=None,):
method read (line 24839) | def read(self, iprot):
method write (line 2
Condensed preview — 15 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (3,013K chars).
[
{
"path": ".gitignore",
"chars": 6,
"preview": "*.pyc\n"
},
{
"path": "LINETCR/Api/LineTracer.py",
"chars": 1690,
"preview": "# -*- coding: utf-8 -*-\r\n\r\nfrom .LineClient import LineClient\r\nfrom types import *\r\nfrom ..lib.curve.ttypes import OpTyp"
},
{
"path": "LINETCR/Api/Poll.py",
"chars": 1481,
"preview": "import os, sys, time\npath = os.path.join(os.path.dirname(__file__), '../lib/')\nsys.path.insert(0, path)\n\nfrom thrift.tra"
},
{
"path": "LINETCR/Api/Talk.py",
"chars": 3635,
"preview": "# -*- coding: utf-8 -*-\nimport os, sys\npath = os.path.join(os.path.dirname(__file__), '../lib/')\nsys.path.insert(0, path"
},
{
"path": "LINETCR/Api/__init__.py",
"chars": 72,
"preview": "from Talk import Talk\nfrom Poll import Poll\nfrom channel import Channel\n"
},
{
"path": "LINETCR/Api/channel.py",
"chars": 10103,
"preview": "# -*- coding: utf-8 -*-\nimport os, sys, json\npath = os.path.join(os.path.dirname(__file__), '../lib/')\nsys.path.insert(0"
},
{
"path": "LINETCR/LineApi.py",
"chars": 10335,
"preview": "# -*- coding: utf-8 -*-\nfrom Api import Poll, Talk, channel\nfrom lib.curve.ttypes import *\n\ndef def_callback(str):\n p"
},
{
"path": "LINETCR/__init__.py",
"chars": 80,
"preview": "# -*- coding: utf-8 -*-\nfrom LineApi import LINE\nfrom lib.curve.ttypes import *\n"
},
{
"path": "LINETCR/lib/__init__.py",
"chars": 23,
"preview": "# -*- coding: utf-8 -*-"
},
{
"path": "LINETCR/lib/curve/LineService.py",
"chars": 2354970,
"preview": "#\n# Autogenerated by Thrift Compiler (0.9.3)\n#\n# DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING\n#\n# o"
},
{
"path": "LINETCR/lib/curve/__init__.py",
"chars": 49,
"preview": "__all__ = ['ttypes', 'constants', 'LineService']\n"
},
{
"path": "LINETCR/lib/curve/constants.py",
"chars": 244,
"preview": "#\n# Autogenerated by Thrift Compiler (0.9.3)\n#\n# DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING\n#\n# o"
},
{
"path": "LINETCR/lib/curve/ttypes.py",
"chars": 435067,
"preview": "#\n# Autogenerated by Thrift Compiler (0.9.3)\n#\n# DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING\n#\n# o"
},
{
"path": "README.md",
"chars": 185,
"preview": "# LINE TCR\nForked from LINEALPHA [MerkKremont]\n\nfixing some error and delete unusable code \n\n## Require to install\n```\np"
},
{
"path": "tcr.py",
"chars": 85866,
"preview": "# -*- coding: utf-8 -*-\n\nimport LINETCR\nfrom LINETCR.lib.curve.ttypes import *\nfrom datetime import datetime\nimport time"
}
]
About this extraction
This page contains the full source code of the alfathdirk/LIN3-TCR GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 15 files (2.8 MB), approximately 726.6k tokens, and a symbol index with 8912 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.