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.
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'