wft-geodb-angular-client
Version:
Provides Angular client bindings to the GeoDB service.
14 lines (13 loc) • 441 B
TypeScript
import { FindCollectionRequest } from './find-collection-request.model';
export interface FindCountryPlacesRequest extends FindCollectionRequest {
countryId: string;
minPopulation?: number;
maxPopulation?: number;
namePrefix?: string;
namePrefixDefaultLangResults?: boolean;
types?: Array<string>;
asciiMode?: boolean;
languageCode?: string;
sortDirectives?: Array<string>;
includeDeleted?: string;
}