Overview

Summary

ContactDonateImprint


Appendix E-7: STICKER (UI prompt)


StickerStickerPackModuleSignalMessenger

Properties (6)

PropertyTypeEntityReferenceModule
(1) CreatedAtDATESticker
(2) EmojiShortcutSTRINGSticker
(3) EncryptionKeySTRINGSticker
(4) ImageUrlSTRINGSticker
(5) IndexInPackINTSticker
(6) StickerPackLONGStickerStickerPackStickerPackModule


Module Interfaces (6)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /stickerfindAllSticker()StickerPackModuleGETSticker
(2) /sticker/stickerpack/{id}findAllStickerOfStickerPack(id)StickerPackModuleGETStickerPack Sticker
(3) /sticker/{id}deleteStickerById(id)StickerPackModuleDELETESticker
(4) /sticker/{id}findStickerById(id)StickerPackModuleGETSticker
(5) /sticker/{id}updateStickerById(sticker)StickerPackModulePUTSticker
(6) /stickerinsertSticker(sticker)StickerPackModulePOSTSticker





Example:

final Sticker sticker = (Sticker) invokeModule(STICKER_PACK_MODULE + "/sticker/" + id, Sticker.class);
if (sticker != null) {
    final StickerPack stickerpack1 = (StickerPack) invokeModule(STICKER_PACK_MODULE + "/stickerpack/" + sticker.getStickerPack().getId(), StickerPack.class);
    if (stickerpack1 != null) {
    }
}
return sticker;


Overview

Summary

ContactDonateImprint