1 | <?php |
||
13 | class EwsArrayOfTransitionsType extends AbstractStructBase |
||
14 | { |
||
15 | /** |
||
16 | * The Transition |
||
17 | * Meta informations extracted from the WSDL |
||
18 | * - maxOccurs: unbounded |
||
19 | * - ref: t:Transition |
||
20 | * @var \Ews\StructType\EwsTransitionType[] |
||
21 | */ |
||
22 | public $Transition; |
||
23 | /** |
||
24 | * The Id |
||
25 | * @var string |
||
26 | */ |
||
27 | public $Id; |
||
28 | /** |
||
29 | * Constructor method for ArrayOfTransitionsType |
||
30 | * @uses EwsArrayOfTransitionsType::setTransition() |
||
31 | * @uses EwsArrayOfTransitionsType::setId() |
||
32 | * @param \Ews\StructType\EwsTransitionType[] $transition |
||
33 | * @param string $id |
||
34 | */ |
||
35 | public function __construct(array $transition = array(), $id = null) |
||
41 | /** |
||
42 | * Get Transition value |
||
43 | * @return \Ews\StructType\EwsTransitionType[]|null |
||
44 | */ |
||
45 | public function getTransition() |
||
49 | /** |
||
50 | * Set Transition value |
||
51 | * @throws \InvalidArgumentException |
||
52 | * @param \Ews\StructType\EwsTransitionType[] $transition |
||
53 | * @return \Ews\StructType\EwsArrayOfTransitionsType |
||
54 | */ |
||
55 | public function setTransition(array $transition = array()) |
||
66 | /** |
||
67 | * Add item to Transition value |
||
68 | * @throws \InvalidArgumentException |
||
69 | * @param \Ews\StructType\EwsTransitionType $item |
||
70 | * @return \Ews\StructType\EwsArrayOfTransitionsType |
||
71 | */ |
||
72 | public function addToTransition(\Ews\StructType\EwsTransitionType $item) |
||
81 | /** |
||
82 | * Get Id value |
||
83 | * @return string|null |
||
84 | */ |
||
85 | public function getId() |
||
89 | /** |
||
90 | * Set Id value |
||
91 | * @param string $id |
||
92 | * @return \Ews\StructType\EwsArrayOfTransitionsType |
||
93 | */ |
||
94 | public function setId($id = null) |
||
103 | /** |
||
104 | * Method called when an object has been exported with var_export() functions |
||
105 | * It allows to return an object instantiated with the values |
||
106 | * @see AbstractStructBase::__set_state() |
||
107 | * @uses AbstractStructBase::__set_state() |
||
108 | * @param array $array the exported values |
||
109 | * @return \Ews\StructType\EwsArrayOfTransitionsType |
||
110 | */ |
||
111 | public static function __set_state(array $array) |
||
115 | /** |
||
116 | * Method returning the class name |
||
117 | * @return string __CLASS__ |
||
118 | */ |
||
119 | public function __toString() |
||
123 | } |
||
124 |