Interface HonuaOdataEntitySetOptions

Construction options for HonuaOdataEntitySet.

basePath defaults to /odata (Honua Server's route prefix). External OData services pass the path their endpoint is mounted under and use a HonuaClient bound to that origin.

interface HonuaOdataEntitySetOptions {
    basePath?: string;
    client: HonuaClient;
    entitySet: string;
}

Properties

basePath?: string

Path prefix for the OData service. Defaults to "/odata".

client: HonuaClient
entitySet: string

Entity-set token, e.g. "Features" or "Layers(1)/Features".