Interface ODataActionImportRequest

interface ODataActionImportRequest {
    actionName: string;
    collection?: string;
    method?: HTTPMethod;
    parameters?: {
        [key: string]: any;
    };
    params?: SystemQueryOptions<any>;
}

Hierarchy (view full)

Properties

actionName: string
collection?: string

the entity set name of data service

method?: HTTPMethod

GET for QUERY/READ; for QUERY, you can use params to control response data PATCH for UPDATE PUT for overrite POST for CREATE DELETE for delete

parameters?: {
    [key: string]: any;
}

Type declaration

  • [key: string]: any
params?: SystemQueryOptions<any>

Generated using TypeDoc