Interface InteractiveAction

Polymorphism intensifies. Also helps with the _type typings :)

interface InteractiveAction {
    get _type(): "list" | "button" | "catalog_message" | "product" | "product_list" | "cta_url" | "flow";
}

Hierarchy

Implemented by

Accessors

Accessors

  • get _type(): "list" | "button" | "catalog_message" | "product" | "product_list" | "cta_url" | "flow"
  • Returns "list" | "button" | "catalog_message" | "product" | "product_list" | "cta_url" | "flow"

Generated using TypeDoc