oont-contents/plugins/woocommerce-square/vendor/apimatic/jsonmapper/tests/JsonMapperTest/SimpleBase.php
2025-02-08 15:10:23 +01:00

26 lines
360 B
PHP

<?php
/**
* @discriminator type
* @discriminatorType base
*/
class JsonMapperTest_SimpleBase
{
public $afield;
public $bfield;
public $type;
/**
* Embedded
* @var JsonMapperTest_SimpleBase
*/
public $embedded;
/**
* Embedded array
* @var JsonMapperTest_SimpleBase[]
*/
public $embeddedArray;
}