0byt3m1n1
Path:
/
home
/
k
/
a
/
s
/
kassiope
/
www
/
vendor
/
shoppingfeed
/
php-sdk
/
src
/
Api
/
Catalog
/
[
Home
]
File: PricingResource.php
<?php namespace ShoppingFeed\Sdk\Api\Catalog; use ShoppingFeed\Sdk\Resource\AbstractResource; class PricingResource extends AbstractResource { /** * @return int */ public function getId() { return $this->getProperty('id'); } /** * @return float */ public function getPrice() { return $this->getProperty('price'); } /** * @return int */ public function getReference() { return $this->getProperty('reference'); } /** * @return \DateTimeImmutable|null * * @throws \Exception */ public function getUpdatedAt() { return $this->getPropertyDatetime('updatedAt'); } }