(int) Entity identified or entity link field. * 'value' => (float) Special price value. * 'store_id' => (int) Store Id. * 'sku' => (string) Product SKU. * 'price_from' => (string) Special price from date value in UTC. * 'price_to' => (string) Special price to date value in UTC. * ] * @since 101.1.0 * @since 102.0.0 */ public function get(array $skus); /** * Update product special prices. * * @param array $prices * $prices = [ * 'entity_id' => (int) Entity identified or entity link field. Required. * 'attribute_id' => (int) Special price attribute Id. Required. * 'store_id' => (int) Store Id. Required. * 'value' => (float) Special price value. Required. * 'price_from' => (string) Special price from date value in Y-m-d H:i:s format in UTC. Optional. * 'price_to' => (string) Special price to date value in Y-m-d H:i:s format in UTC. Optional. * ]; * @return bool * @throws \Magento\Framework\Exception\CouldNotSaveException Thrown if error occurred during price save. * @since 102.0.0 */ public function update(array $prices); /** * Delete product special prices. * * @param array $prices * $prices = [ * 'entity_id' => (int) Entity identified or entity link field. Required. * 'attribute_id' => (int) Special price attribute Id. Required. * 'store_id' => (int) Store Id. Required. * 'value' => (float) Special price value. Required. * 'price_from' => (string) Special price from date value in Y-m-d H:i:s format in UTC. Optional. * 'price_to' => (string) Special price to date value in Y-m-d H:i:s format in UTC. Optional. * ]; * @return bool * @throws \Magento\Framework\Exception\CouldNotDeleteException Thrown if error occurred during price delete. * @since 102.0.0 */ public function delete(array $prices); }