23 lines
375 B
PHP
23 lines
375 B
PHP
<?php
|
|
|
|
namespace UsingTraits;
|
|
|
|
use UsingTraits\Decoration;
|
|
|
|
/**
|
|
* @OA\Schema(title="SimpleProduct model")
|
|
* )
|
|
*/
|
|
class SimpleProduct {
|
|
use Decoration\Bells;
|
|
use Decoration\UndocumentedBell;
|
|
|
|
/**
|
|
* The unique identifier of a simple product in our catalog.
|
|
*
|
|
* @var integer
|
|
* @OA\Property(format="int64", example=1)
|
|
*/
|
|
public $id;
|
|
}
|