You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

21 lines
338 B

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