src/app/modules/core/interfaces/pageSection.ts
page interface
| exists |
exists: |
Type : string[]
|
| filters |
filters: |
Type : object
|
|
page filters |
| mode |
mode: |
Type : string
|
|
mode : soft |
| name |
name: |
Type : string
|
|
page name |
| organisationId |
organisationId: |
Type : string
|
| params |
params: |
Type : object
|
| softConstraints |
softConstraints: |
Type : object
|
|
filters badgeAssertions, channel |
| sort_by |
sort_by: |
Type : object
|
|
page sort by |
| source |
source: |
Type : string
|
|
page source |
export interface IPageSection {
/**
* page source
*/
source?: string;
/**
* page name
*/
name?: string;
/**
* page filters
*/
filters?: object;
/**
* page sort by
*/
sort_by?: object;
/**
* filters badgeAssertions, channel
*/
softConstraints?: object;
/**
* mode : soft
*/
mode?: string;
exists?: Array<string>;
params?: object;
organisationId?: string;
}