projects/wvr-elements/src/lib/core/manifest/manifest-entry-request.ts
Properties |
|
body |
body:
|
Type : any
|
Optional |
bodyHttpParams |
bodyHttpParams:
|
Type : "fromObject" | "fromString"
|
Optional |
decode |
decode:
|
Type : Array<string>
|
Optional |
entryName |
entryName:
|
Type : string
|
manifestName |
manifestName:
|
Type : string
|
Optional |
method |
method:
|
Type : RequestMethod
|
Optional |
onFailure |
onFailure:
|
Type : Array<Action>
|
Optional |
onSuccess |
onSuccess:
|
Type : Array<Action>
|
Optional |
options |
options:
|
Type : RequestOptions
|
Optional |
import { Action } from '@ngrx/store';
import { RequestMethod } from '../rest/request-method';
import { RequestOptions } from '../rest/request-options';
export interface ManifestEntryRequest {
manifestName?: string;
entryName: string;
method?: RequestMethod;
body?: any;
options?: RequestOptions;
decode?: Array<string>;
bodyHttpParams?: 'fromObject' | 'fromString';
onSuccess?: Array<Action>;
onFailure?: Array<Action>;
}