Interface HonuaOdataAdvertisedCapabilities

Coarse capability flags derived from the OData Capabilities.* annotation namespace. The intersection happens in the contract layer (the adapter does not enforce capability restrictions itself).

interface HonuaOdataAdvertisedCapabilities {
    apply?: boolean;
    batch?: boolean;
    count?: boolean;
    delete?: boolean;
    delta?: boolean;
    expand?: boolean;
    filter?: boolean;
    insert?: boolean;
    query?: boolean;
    search?: boolean;
    select?: boolean;
    update?: boolean;
}

Properties

apply?: boolean
batch?: boolean
count?: boolean
delete?: boolean
delta?: boolean
expand?: boolean
filter?: boolean
insert?: boolean
query?: boolean
search?: boolean
select?: boolean
update?: boolean