|
abstract fun channels(publicIds: String? = null): Call<ChannelRelations> |
|
abstract fun friends(secureResource: Boolean? = true, offset: Int? = null, limit: Int? = null, order: Order? = null): Call<Friends<Friend>> |
|
abstract fun profile(secureResource: Boolean? = true): Call<TalkProfile> |
|
abstract fun sendCustomMemo(templateId: Long, templateArgs: Map<String, String>? = null): Call<Unit> |
|
abstract fun sendCustomMessage(receiverUuids: String, templateId: Long, templateArgs: Map<String, String>? = null): Call<MessageSendResult> |
|
abstract fun sendDefaultMemo(template: DefaultTemplate): Call<Unit> |
|
abstract fun sendDefaultMessage(receiverUuids: String, template: DefaultTemplate): Call<MessageSendResult> |
|
abstract fun sendScrapMemo(requestUrl: String, templateId: Long? = null, templateArgs: Map<String, String>? = null): Call<Unit> |
|
abstract fun sendScrapMessage(receiverUuids: String, requestUrl: String, templateId: Long?, templateArgs: Map<String, String>? = null): Call<MessageSendResult> |