1 | <?php |
||
7 | class StructAttribute extends AbstractModel |
||
8 | { |
||
9 | /** |
||
10 | * @see \WsdlToPhp\PackageGenerator\Container\Model\Model::objectClass() |
||
11 | * @return string |
||
12 | */ |
||
13 | 476 | protected function objectClass() |
|
17 | /** |
||
18 | * @param string $name |
||
19 | * @return Model|null |
||
20 | */ |
||
21 | 480 | public function getStructAttributeByName($name) |
|
25 | /** |
||
26 | * @param string $cleanedName |
||
27 | * @return Model|null |
||
28 | */ |
||
29 | public function getStructAttributeByCleanName($cleanedName) |
||
33 | /** |
||
34 | * @see \WsdlToPhp\PackageGenerator\Model\AbstractModel::get() |
||
35 | * @param string $value |
||
36 | * @return Model|null |
||
37 | */ |
||
38 | public function get($value) |
||
42 | /** |
||
43 | * @param string $cleanedName |
||
44 | * @return Model |
||
45 | */ |
||
46 | public function getByCleanName($cleanedName) |
||
57 | } |
||
58 |