Selva Compute API Reference - v1.1.2
    Preparing search index...

    Interface IoResponseSchema

    Raw I/O response schema from API (PascalCase)

    This is the direct response format from the Rhino Compute server API. All property names are in PascalCase, which is typical for .NET APIs. This raw response is converted to camelCase by the camelcaseKeys() function in the fetchDefinitionIO() method.

    interface IoResponseSchema {
        cachekey: string;
        description: string;
        errors: any[];
        filename: string;
        icon: string | null;
        inputnames: string[];
        inputs: InputParamSchema[];
        outputnames: string[];
        outputs: OutputParamSchema[];
        warnings: any[];
    }
    Index

    Properties

    cachekey: string
    description: string
    errors: any[]
    filename: string
    icon: string | null
    inputnames: string[]
    outputnames: string[]
    warnings: any[]