import type { BaseParams } from './mod.ts';

export interface RetailMediaParams extends BaseParams {
  /**
   * Required if the `Referer` header is missing, used to identify the current page.
   * Any string is accepted, but using URLs is a good practice to follow.
   */
  pageReference: string;
    /**
   * The ID of a response template to apply to all banners returned.
   *
   * Templates can adjust which attributes are returned for banners, and makes
   * `presentCustom` unnecessary. Templates can be imported via the Admin API.
   * @see https://docs.apptus.com/elevate/4/guides/product-list-response-templates/
   */
  templateId?: string;
}
