@archastro/sdk
    Preparing search index...

    Interface SolutionAutomationTemplateDetails

    AutomationTemplate-specific details exposed by a Solution template summary.

    interface SolutionAutomationTemplateDetails {
        automation_type?: string | null;
        invoke_contract?: SolutionAutomationInvokeContract | null;
        type: "automation";
    }
    Index

    Properties

    automation_type?: string | null

    Automation execution type (invoked, scheduled, or trigger). null when the template body does not declare one.

    invoke_contract?: SolutionAutomationInvokeContract | null

    Schema-driven payload and participant inputs for an invoked automation. Used by installation clients to collect locked prefills before provisioning. null for non-invoked automation types.

    type: "automation"

    Template-details discriminator. Always automation for this variant.