UNPKG

@selfcommunity/api-services

Version:
19 lines (18 loc) 373 B
import { BaseSearchParams } from './baseParams'; /** * LegalPageFilterParams interface. */ export interface LegalPageFilterParams extends BaseSearchParams { /** * Valid from date */ valid_from: string; /** * Valid to date */ valid_to: string; /** * Which field to use when ordering the results */ ordering: string; }