Skip to main content
Wapi.js Docs / ProductInquiryEvent

Class: ProductInquiryEvent

Represents a product inquiry event.

Implements

Extends

Implements

Constructors

new ProductInquiryEvent()

new ProductInquiryEvent(params): ProductInquiryEvent
Creates a new instance of the ProductInquiryEvent class.

Parameters

• params The parameters for creating the event. • params.client: Client The client object. • params.data The data object containing event data. • params.data.catalogId: string • params.data.from: string • params.data.id: string • params.data.isForwarded: boolean • params.data.productId: string • params.data.text: string • params.data.timestamp: string

Returns

ProductInquiryEvent

Overrides

MessageEvent.constructor

Source

packages/wapi.js/src/webhook/events/product-inquiry/index.ts:44

Properties

catalogId

catalogId: string
The ID of the catalog.

Implementation of

ProductInquiryEventInterface.catalogId

Source

packages/wapi.js/src/webhook/events/product-inquiry/index.ts:24

client

client: Client
The client instance associated with the event.

Implementation of

ProductInquiryEventInterface.client

Inherited from

MessageEvent.client

Source

packages/wapi.js/src/webhook/events/base/index.ts:20

context

context: MessageContext
The context of the message.

Implementation of

ProductInquiryEventInterface.context

Inherited from

MessageEvent.context

Source

packages/wapi.js/src/webhook/events/base/index.ts:37

isForwarded

isForwarded: boolean

Inherited from

MessageEvent.isForwarded

Source

packages/wapi.js/src/webhook/events/base/index.ts:39

messageId

messageId: string
The ID of the message.

Implementation of

ProductInquiryEventInterface.messageId

Inherited from

MessageEvent.messageId

Source

packages/wapi.js/src/webhook/events/base/index.ts:36

productId

productId: string
The ID of the product.

Implementation of

ProductInquiryEventInterface.productId

Source

packages/wapi.js/src/webhook/events/product-inquiry/index.ts:19

text

text: string
The text of the inquiry message.

Implementation of

ProductInquiryEventInterface.text

Source

packages/wapi.js/src/webhook/events/product-inquiry/index.ts:29

timestamp

timestamp: number
The timestamp of the message.

Implementation of

ProductInquiryEventInterface.timestamp

Inherited from

MessageEvent.timestamp

Source

packages/wapi.js/src/webhook/events/base/index.ts:38

Methods

react()

react(params): Promise<object | object>
Reacts to the message with an emoji.

Parameters

• params The parameters for the reaction. • params.emoji: string The emoji to react with. • params.phoneNumber: string The phone number of the sender.

Returns

Promise<object | object>
  • A promise that resolves with the reaction response.

Inherited from

MessageEvent.react

Source

packages/wapi.js/src/webhook/events/base/index.ts:100

read()

read(): Promise<object | object | object | object | object>
Marks the message as read.

Returns

Promise<object | object | object | object | object>
  • A promise that resolves with the read response.

Inherited from

MessageEvent.read

Memberof

MessageEvent

Source

packages/wapi.js/src/webhook/events/base/index.ts:121

reply()

reply<T>(props): Promise<object | object>
Sends a reply to the message.

Type parameters

• T extends BaseMessage<string>

Parameters

• props The properties for the reply. • props.message: T The message to send as a reply.

Returns

Promise<object | object>
  • A promise that resolves when the reply is sent.

Inherited from

MessageEvent.reply

Throws

  • If the context message ID is not found.

Source

packages/wapi.js/src/webhook/events/base/index.ts:75