/** * @type ProductListLink: Document representing a link to a product list. * * @property description: The description of this product list. * * @property name: The name of this product list. * * @property public: A flag indicating whether the owner made this product list available for access by other customers. It is read only. * * @property title: The link title. * * @property type: The type of the product list. * */ export type ProductListLink = { description?: string; name?: string; public?: boolean; title?: string; type?: ProductListLinkTypeEnum; } & { [key: string]: any; }; export type ProductListLinkTypeEnum = 'wish_list' | 'gift_registry' | 'shopping_list' | 'custom_1' | 'custom_2' | 'custom_3';