-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
kube-backup
committed
Dec 12, 2019
1 parent
e2a9373
commit 1707c58
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<?php | ||
|
||
|
||
namespace rollun\api\megaplan\DataStore; | ||
|
||
|
||
use rollun\datastore\DataStore\DataStoreException; | ||
|
||
/** | ||
* Class Offer | ||
* @package rollun\api\megaplan\DataStore | ||
* @see https://dev.megaplan.ru/api/API_invoices.html#id20 | ||
*/ | ||
class Offer extends AbstractMegaplanEntity | ||
{ | ||
/** | ||
* | ||
*/ | ||
public const GET_ENTITIES_URI = '/BumsTradeApiV01/Offer/list.api'; | ||
|
||
/** | ||
* | ||
*/ | ||
public const CHANGE_ENTITY_URI = '/BumsTradeApiV01/Offer/save.api'; | ||
|
||
/** | ||
* | ||
*/ | ||
public const GET_FIELDS_URI = '/BumsTradeApiV01/Offer/listFields.api'; | ||
|
||
public function read($id) | ||
{ | ||
throw new DataStoreException('Read method not support for Offer store.'); | ||
} | ||
} |