IUrlTemplateConfiguration – GBG IDscan Documentation

IUrlTemplateConfiguration

Configuration type which provides a URL to retrieve the template string from.

NOTE: Nothing is prepended to the URL string before the request is made, so it is possible to use either fully qualified addresses or relative addresses for the provider configuration.

Signature:

export interface IUrlTemplateConfiguration 

Properties

PropertyTypeDescription
processorPreProcessorThe PreProcessor which the resolved template should be passed through.
providerstringThe URL to retrieve the template string from.
typeTemplateType.UrlThe type of the template.

IUrlTemplateConfiguration.processor property

The PreProcessor which the resolved template should be passed through.

Signature:

readonly processor: PreProcessor;

IUrlTemplateConfiguration.provider property

The URL to retrieve the template string from.

Signature:

readonly provider: string;

IUrlTemplateConfiguration.type property

The type of the template.

Signature:

readonly type: TemplateType.Url;

Was this page helpful?