How to use the messaging-api-line.Line.createConfirmTemplate function in messaging-api-line

To help you get started, we’ve selected a few messaging-api-line examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github Yoctol / bottender / packages / bottender / src / line / LineContext.ts View on Github external
sendConfirmTemplate(
    altText: string,
    confirmTemplate: Omit,
    options: LineTypes.MessageOptions
  ) {
    return this.send(
      [Line.createConfirmTemplate(altText, confirmTemplate, options)],
      options
    );
  }
github Yoctol / bottender / packages / bottender / src / line / LineContext.ts View on Github external
pushConfirmTemplate(
    altText: string,
    confirmTemplate: Omit,
    options: LineTypes.MessageOptions
  ) {
    return this.push(
      [Line.createConfirmTemplate(altText, confirmTemplate, options)],
      options
    );
  }
github Yoctol / bottender / packages / bottender / src / line / LineContext.ts View on Github external
replyConfirmTemplate(
    altText: string,
    confirmTemplate: Omit,
    options: LineTypes.MessageOptions
  ) {
    return this.reply(
      [Line.createConfirmTemplate(altText, confirmTemplate, options)],
      options
    );
  }