Interface ResponseMetadata

interface ResponseMetadata {
    description: string;
    fields: MetadataField[];
    id: string;
    importMessage?: string;
    importTemplates?: {
        label: string;
        url: string;
    }[];
    root: string;
    title: string;
    totalProperty: string;
}

Properties

description: string

Description of the underlying query

fields: MetadataField[]
id: string

Name of the primary key column.

importMessage?: string
importTemplates?: {
    label: string;
    url: string;
}[]

An array of templates (label/URL) that should be used as the options for excel upload. Each URL should either point to a static template file or an action to generate the template. If no custom templates have been provided, it will return the default URL.

Type declaration

  • label: string
  • url: string
root: string

Name of the property containing rows ("rows").

title: string

Title of the underlying query

totalProperty: string

Name of the top-level property containing the row count ("rowCount") in our case.

Generated using TypeDoc