Represents a StickerPackMessage.

Hierarchy

  • StickerPackMessage

Implements

Constructors

Properties

caption?: null | string

StickerPackMessage caption.

contextInfo?: null | IContextInfo

StickerPackMessage contextInfo.

directPath?: null | string

StickerPackMessage directPath.

fileEncSha256?: null | Uint8Array

StickerPackMessage fileEncSha256.

fileLength?: null | number | Long

StickerPackMessage fileLength.

fileSha256?: null | Uint8Array

StickerPackMessage fileSha256.

imageDataHash?: null | string

StickerPackMessage imageDataHash.

mediaKey?: null | Uint8Array

StickerPackMessage mediaKey.

mediaKeyTimestamp?: null | number | Long

StickerPackMessage mediaKeyTimestamp.

name?: null | string

StickerPackMessage name.

packDescription?: null | string

StickerPackMessage packDescription.

publisher?: null | string

StickerPackMessage publisher.

stickerPackId?: null | string

StickerPackMessage stickerPackId.

stickerPackOrigin?: null | StickerPackOrigin

StickerPackMessage stickerPackOrigin.

stickerPackSize?: null | number | Long

StickerPackMessage stickerPackSize.

stickers: ISticker[]

StickerPackMessage stickers.

thumbnailDirectPath?: null | string

StickerPackMessage thumbnailDirectPath.

thumbnailEncSha256?: null | Uint8Array

StickerPackMessage thumbnailEncSha256.

thumbnailHeight?: null | number

StickerPackMessage thumbnailHeight.

thumbnailSha256?: null | Uint8Array

StickerPackMessage thumbnailSha256.

thumbnailWidth?: null | number

StickerPackMessage thumbnailWidth.

trayIconFileName?: null | string

StickerPackMessage trayIconFileName.

Methods

  • Converts this StickerPackMessage to JSON.

    Returns {
        [k: string]: any;
    }

    JSON object

    • [k: string]: any
  • Decodes a StickerPackMessage message from the specified reader or buffer.

    Parameters

    • reader: Uint8Array | Reader

      Reader or buffer to decode from

    • Optional length: number

      Message length if known beforehand

    Returns StickerPackMessage

    StickerPackMessage

    Throws

    If the payload is not a reader or valid buffer

    Throws

    If required fields are missing

  • Decodes a StickerPackMessage message from the specified reader or buffer, length delimited.

    Parameters

    • reader: Uint8Array | Reader

      Reader or buffer to decode from

    Returns StickerPackMessage

    StickerPackMessage

    Throws

    If the payload is not a reader or valid buffer

    Throws

    If required fields are missing

  • Encodes the specified StickerPackMessage message. Does not implicitly verify messages.

    Parameters

    • message: IStickerPackMessage

      StickerPackMessage message or plain object to encode

    • Optional writer: Writer

      Writer to encode to

    Returns Writer

    Writer

  • Encodes the specified StickerPackMessage message, length delimited. Does not implicitly verify messages.

    Parameters

    • message: IStickerPackMessage

      StickerPackMessage message or plain object to encode

    • Optional writer: Writer

      Writer to encode to

    Returns Writer

    Writer

  • Creates a StickerPackMessage message from a plain object. Also converts values to their respective internal types.

    Parameters

    • object: {
          [k: string]: any;
      }

      Plain object

      • [k: string]: any

    Returns StickerPackMessage

    StickerPackMessage

  • Gets the default type url for StickerPackMessage

    Parameters

    • Optional typeUrlPrefix: string

      your custom typeUrlPrefix(default "type.googleapis.com")

    Returns string

    The default type url

  • Creates a plain object from a StickerPackMessage message. Also converts values to other types if specified.

    Parameters

    • message: StickerPackMessage

      StickerPackMessage

    • Optional options: IConversionOptions

      Conversion options

    Returns {
        [k: string]: any;
    }

    Plain object

    • [k: string]: any
  • Verifies a StickerPackMessage message.

    Parameters

    • message: {
          [k: string]: any;
      }

      Plain object to verify

      • [k: string]: any

    Returns null | string

    null if valid, otherwise the reason why it is not

Generated using TypeDoc