Store: {
    address1?: string;
    address2?: string;
    city?: string;
    countryCode?: string;
    distance?: number;
    distanceUnit?: DistanceUnit;
    email?: string;
    fax?: string;
    id: string;
    image?: string;
    inventoryId?: string;
    latitude?: number;
    longitude?: number;
    name?: string;
    phone?: string;
    posEnabled?: boolean;
    postalCode?: string;
    stateCode?: string;
    storeEvents?: string;
    storeHours?: string;
    storeLocatorEnabled?: boolean;
} & {
    [key: string]: any;
}

Type declaration

  • Optional address1?: string
  • Optional address2?: string
  • Optional city?: string
  • Optional countryCode?: string
  • Optional distance?: number
  • Optional distanceUnit?: DistanceUnit
  • Optional email?: string
  • Optional fax?: string
  • id: string
  • Optional image?: string
  • Optional inventoryId?: string
  • Optional latitude?: number
  • Optional longitude?: number
  • Optional name?: string
  • Optional phone?: string
  • Optional posEnabled?: boolean
  • Optional postalCode?: string
  • Optional stateCode?: string
  • Optional storeEvents?: string
  • Optional storeHours?: string
  • Optional storeLocatorEnabled?: boolean

Type declaration

  • [key: string]: any