Interface ActionAttempt

interface ActionAttempt {
    actionAttemptType: string;
    deprecationMessage: string;
    description: string;
    draftMessage: string;
    isDeprecated: boolean;
    isDraft: boolean;
    isUndocumented: boolean;
    properties: Property[];
    propertyGroups: Record<string, PropertyGroup>;
    resourceSamples: {
        description: string;
        properties: Record<string, Json>;
        resource: Partial<Record<
            | "ruby"
            | "javascript"
            | "python"
            | "php"
            | "seam_cli"
            | "go"
            | "java"
            | "csharp", {
            resource_data: string;
            resource_data_syntax:
                | "ruby"
                | "json"
                | "javascript"
                | "python"
                | "php"
                | "go"
                | "java"
                | "csharp"
                | "bash";
            title: string;
        }>>;
        resource_type: string;
        title: string;
    }[];
    resourceType: "action_attempt";
    routePath: string;
    undocumentedMessage: string;
}

Hierarchy (view full)

Properties

actionAttemptType: string
deprecationMessage: string
description: string
draftMessage: string
isDeprecated: boolean
isDraft: boolean
isUndocumented: boolean
properties: Property[]
propertyGroups: Record<string, PropertyGroup>
resourceSamples: {
    description: string;
    properties: Record<string, Json>;
    resource: Partial<Record<
        | "ruby"
        | "javascript"
        | "python"
        | "php"
        | "seam_cli"
        | "go"
        | "java"
        | "csharp", {
        resource_data: string;
        resource_data_syntax:
            | "ruby"
            | "json"
            | "javascript"
            | "python"
            | "php"
            | "go"
            | "java"
            | "csharp"
            | "bash";
        title: string;
    }>>;
    resource_type: string;
    title: string;
}[]
resourceType: "action_attempt"
routePath: string
undocumentedMessage: string