| 1 |
<?php |
| 2 |
|
| 3 |
namespace SureCart\Models; |
| 4 |
|
| 5 |
use SureCart\Models\Traits\HasCommissionStructure; |
| 6 |
|
| 7 |
/** |
| 8 |
* Holds the data of the current Affiliation protocol. |
| 9 |
*/ |
| 10 |
class AffiliationProtocol extends Model { |
| 11 |
use HasCommissionStructure; |
| 12 |
|
| 13 |
/** |
| 14 |
* Rest API endpoint |
| 15 |
* |
| 16 |
* @var string |
| 17 |
*/ |
| 18 |
protected $endpoint = 'affiliation_protocol'; |
| 19 |
|
| 20 |
/** |
| 21 |
* Object name |
| 22 |
* |
| 23 |
* @var string |
| 24 |
*/ |
| 25 |
protected $object_name = 'affiliation_protocol'; |
| 26 |
} |
| 27 |
|