| Name | Type |
|---|---|
type |
string |
time |
TimeInterval |
params |
GdalDatasetParameters |
resultDescriptor |
RasterResultDescriptor |
cacheTtl |
number |
import type { GdalMetaDataStatic } from '@geoengine/api-client'
// TODO: Update the object below with actual values
const example = {
"type": null,
"time": null,
"params": null,
"resultDescriptor": null,
"cacheTtl": null,
} satisfies GdalMetaDataStatic
console.log(example)
// Convert the instance to a JSON string
const exampleJSON: string = JSON.stringify(example)
console.log(exampleJSON)
// Parse the JSON string back to an object
const exampleParsed = JSON.parse(exampleJSON) as GdalMetaDataStatic
console.log(exampleParsed)[Back to top] [Back to API list] [Back to Model list] [Back to README]