graycoreio/daffodil

View on GitHub
libs/external-router/driver/magento/src/model/url-resolver.ts

Summary

Maintainability
A
0 mins
Test Coverage
export interface MagentoUrlResolver {
  relative_url: string;
  type: string;
  redirectCode: number;
  /**
   * In v2.4.2 this became the standard id field
   */
  entity_uid?: string;
  /**
   * The original id field from Magento
   */
  id?: number;
}