IBaseActionArguments interface

Base object passed to IAdaptiveCardExtensionActionView.onAction when an Adaptive Card Action is executed.

Remarks

Only Submit and ShowCard actions are routed to the IAdaptiveCardExtensionActionView.onAction handler.

Properties

id

The id specified in the Adaptive Card template

type

The type of Adaptive Card Action.

Property Details

id

The id specified in the Adaptive Card template

id?: string;

Property Value

string

type

The type of Adaptive Card Action.

type: 'Submit' | 'ShowCard' | 'Execute';

Property Value

'Submit' | 'ShowCard' | 'Execute'