/** * Contains details about name of the action that was initiated for conversation part type custom_action_started. */ export interface CustomActionStarted { action?: CustomActionStarted.Action; } export declare namespace CustomActionStarted { interface Action { /** Name of the action */ name?: string; } }