Represents a Conversation.

Hierarchy

  • Conversation

Implements

Constructors

Properties

accountLid?: null | string

Conversation accountLid.

archived?: null | boolean

Conversation archived.

capiCreatedGroup?: null | boolean

Conversation capiCreatedGroup.

commentsCount?: null | number

Conversation commentsCount.

contactPrimaryIdentityKey?: null | Uint8Array

Conversation contactPrimaryIdentityKey.

conversationTimestamp?: null | number | Long

Conversation conversationTimestamp.

createdAt?: null | number | Long

Conversation createdAt.

createdBy?: null | string

Conversation createdBy.

description?: null | string

Conversation description.

disappearingMode?: null | IDisappearingMode

Conversation disappearingMode.

displayName?: null | string

Conversation displayName.

endOfHistoryTransfer?: null | boolean

Conversation endOfHistoryTransfer.

endOfHistoryTransferType?: null | EndOfHistoryTransferType

Conversation endOfHistoryTransferType.

ephemeralExpiration?: null | number

Conversation ephemeralExpiration.

ephemeralSettingTimestamp?: null | number | Long

Conversation ephemeralSettingTimestamp.

id: string

Conversation id.

isDefaultSubgroup?: null | boolean

Conversation isDefaultSubgroup.

isParentGroup?: null | boolean

Conversation isParentGroup.

lastMsgTimestamp?: null | number | Long

Conversation lastMsgTimestamp.

lidJid?: null | string

Conversation lidJid.

lidOriginType?: null | string

Conversation lidOriginType.

limitSharing?: null | boolean

Conversation limitSharing.

locked?: null | boolean

Conversation locked.

markedAsUnread?: null | boolean

Conversation markedAsUnread.

mediaVisibility?: null | MediaVisibility

Conversation mediaVisibility.

messages: IHistorySyncMsg[]

Conversation messages.

muteEndTime?: null | number | Long

Conversation muteEndTime.

name?: null | string

Conversation name.

newJid?: null | string

Conversation newJid.

notSpam?: null | boolean

Conversation notSpam.

oldJid?: null | string

Conversation oldJid.

pHash?: null | string

Conversation pHash.

parentGroupId?: null | string

Conversation parentGroupId.

participant: IGroupParticipant[]

Conversation participant.

pinned?: null | number

Conversation pinned.

pnJid?: null | string

Conversation pnJid.

pnhDuplicateLidThread?: null | boolean

Conversation pnhDuplicateLidThread.

readOnly?: null | boolean

Conversation readOnly.

shareOwnPn?: null | boolean

Conversation shareOwnPn.

support?: null | boolean

Conversation support.

suspended?: null | boolean

Conversation suspended.

systemMessageToInsert?: null | PrivacySystemMessage

Conversation systemMessageToInsert.

tcToken?: null | Uint8Array

Conversation tcToken.

tcTokenSenderTimestamp?: null | number | Long

Conversation tcTokenSenderTimestamp.

tcTokenTimestamp?: null | number | Long

Conversation tcTokenTimestamp.

terminated?: null | boolean

Conversation terminated.

unreadCount?: null | number

Conversation unreadCount.

unreadMentionCount?: null | number

Conversation unreadMentionCount.

username?: null | string

Conversation username.

wallpaper?: null | IWallpaperSettings

Conversation wallpaper.

Methods

  • Converts this Conversation to JSON.

    Returns {
        [k: string]: any;
    }

    JSON object

    • [k: string]: any
  • Decodes a Conversation 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 Conversation

    Conversation

    Throws

    If the payload is not a reader or valid buffer

    Throws

    If required fields are missing

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

    Parameters

    • reader: Uint8Array | Reader

      Reader or buffer to decode from

    Returns Conversation

    Conversation

    Throws

    If the payload is not a reader or valid buffer

    Throws

    If required fields are missing

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

    Parameters

    • message: IConversation

      Conversation message or plain object to encode

    • Optional writer: Writer

      Writer to encode to

    Returns Writer

    Writer

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

    Parameters

    • message: IConversation

      Conversation message or plain object to encode

    • Optional writer: Writer

      Writer to encode to

    Returns Writer

    Writer

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

    Parameters

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

      Plain object

      • [k: string]: any

    Returns Conversation

    Conversation

  • Gets the default type url for Conversation

    Parameters

    • Optional typeUrlPrefix: string

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

    Returns string

    The default type url

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

    Parameters

    • message: Conversation

      Conversation

    • Optional options: IConversionOptions

      Conversion options

    Returns {
        [k: string]: any;
    }

    Plain object

    • [k: string]: any
  • Verifies a Conversation 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