models/query.model.ts
Query parameters for URL.
HazardAppQuery
Properties |
sourceType |
sourceType:
|
Type : string
|
Hazard source type |
vs30 |
vs30:
|
Type : string
|
Vs30 |
import {HazardAppQuery} from '@ghsc/nshmp-lib-ng/hazard';
/**
* Query parameters for URL.
*/
export interface DynamicHazardQuery extends HazardAppQuery {
/** Hazard source type */
sourceType: string;
/** Vs30 */
vs30: string;
}