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,52 @@
<?php
namespace UnitTests\Fixtures;
use AlibabaCloud\Oss\V2\Types\ModelTrait;
use AlibabaCloud\Oss\V2\Types\ResultModel;
use AlibabaCloud\Oss\V2\Annotation\TagHeader;
use AlibabaCloud\Oss\V2\Annotation\XmlElement;
class PutApiBResult extends ResultModel
{
use ModelTrait;
#[TagHeader(rename: 'x-oss-str', type: 'string')]
private ?string $strHeader;
#[TagHeader(rename: 'x-oss-int', type: 'int')]
private ?int $intHeader;
#[TagHeader(rename: 'x-oss-bool', type: 'bool')]
private ?bool $boolHeader;
#[TagHeader(rename: 'x-oss-float', type: 'float')]
private ?float $floatHeader;
#[XmlElement(rename: 'Id', type: 'string')]
private ?string $id;
#[XmlElement(rename: 'Text', type: 'string')]
private ?string $text;
#[XmlElement(rename: 'SubConfiguration', type: SubConfiguration::class)]
private ?array $subConfiguration;
public function __construct(
?string $strHeader = null,
?int $intHeader = null,
?bool $boolHeader = null,
?float $floatHeader = null,
?string $id = null,
?string $text = null,
?array $subConfiguration = null
) {
$this->strHeader = $strHeader;
$this->intHeader = $intHeader;
$this->boolHeader = $boolHeader;
$this->floatHeader = $floatHeader;
$this->id = $id;
$this->text = $text;
$this->subConfiguration = $subConfiguration;
}
}