interface CalculationPrimitive {
    endpointName: string;
    primitiveName: string;
    requestParam?: unknown;
    requestURI?: string;
    resultPrecision?: number;
    resultStyle?: CalculationPrimitiveStyle[];
    resultType?: CalculationResultType;
    resultURI?: string;
}

Properties

endpointName: string

Endpoint to use.

primitiveName: string

Name of the calculation primitive.

requestParam?: unknown

Request configuration parameter value.

requestURI?: string

URI inside the request object to points the calculation configuration (if any).

resultPrecision?: number

If precision is set, result is interpreted as a number.

Optional property to set the result style.

Calculation result type: string or number. Not set for built-in types.

resultURI?: string

URI to identify the part of the result object to look for to get the calculation primitive value.

Generated using TypeDoc