models/disagg-query.model.ts
URL query parameters.
HazardAppQuery
Properties |
disaggComponent |
disaggComponent:
|
Type : string
|
Disaggregation component |
disaggTarget |
disaggTarget:
|
Type : DisaggTarget
|
The disaggregation target |
iml |
iml:
|
Type : string
|
IML |
imt |
imt:
|
Type : Imt
|
IMT |
vs30 |
vs30:
|
Type : string
|
Vs30 |
import {DisaggTarget, HazardAppQuery} from '@ghsc/nshmp-lib-ng/hazard';
import {Imt} from '@ghsc/nshmp-utils-ts/libs/nshmp-lib/gmm';
/**
* URL query parameters.
*/
export interface DisaggQuery extends HazardAppQuery {
/** Disaggregation component */
disaggComponent: string;
/** The disaggregation target */
disaggTarget: DisaggTarget;
/** IML */
iml: string;
/** IMT */
imt: Imt;
/** Vs30 */
vs30: string;
}