This commit is contained in:
gaofeng
2026-06-17 09:23:18 +08:00
commit 81ade70944
1638 changed files with 213697 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
<?php
namespace UnitTests\Fixtures;
use AlibabaCloud\Oss\V2\Types\Model;
use AlibabaCloud\Oss\V2\Types\ModelTrait;
use AlibabaCloud\Oss\V2\Annotation\XmlElement;
use AlibabaCloud\Oss\V2\Annotation\XmlRoot;
#[XmlRoot(name: 'SubConfiguration')]
class SubConfiguration extends Model
{
use ModelTrait;
#[XmlElement(rename: 'StrField', type: 'string')]
private ?string $strField;
#[XmlElement(rename: 'IntField', type: 'int')]
private ?int $intField;
public function __construct(
?string $strField = null,
?int $intField = null
) {
$this->strField = $strField;
$this->intField = $intField;
}
}