@@ -56,16 +56,8 @@ class ActivatableItemDetailType
5656
5757 /**
5858 * Constructor
59- *
60- * @param \Flexnet\EntitlementOrderService\Type\EntitlementLineItemDataType $activatableItemData
61- * @param string|null $parentBulkEntitlementId
62- * @param string|null $shipToEmail
63- * @param string|null $shipToAddress
64- * @param string|null $entitlementState
65- * @param \Flexnet\EntitlementOrderService\Type\ChannelPartnerDataListType|null $channelPartners
66- * @param \Flexnet\EntitlementOrderService\Type\AttributeDescriptorDataType|null $entitlementAttributes
6759 */
68- public function __construct (string $ activatableItemType , string $ entitlementId , string $ soldTo , EntitlementLineItemDataType $ activatableItemData , string | null $ parentBulkEntitlementId = null , string | null $ shipToEmail = null , string | null $ shipToAddress = null , string | null $ entitlementState = null , ChannelPartnerDataListType | null $ channelPartners = null , AttributeDescriptorDataType | null $ entitlementAttributes = null )
60+ public function __construct (string $ activatableItemType , string $ entitlementId , string $ soldTo , EntitlementLineItemDataType $ activatableItemData , string $ parentBulkEntitlementId = null , string $ shipToEmail = null , string $ shipToAddress = null , string $ entitlementState = null , ChannelPartnerDataListType $ channelPartners = null , AttributeDescriptorDataType $ entitlementAttributes = null )
6961 {
7062 $ this ->activatableItemType = $ activatableItemType ;
7163 $ this ->entitlementId = $ entitlementId ;
@@ -79,16 +71,7 @@ public function __construct(string $activatableItemType, string $entitlementId,
7971 $ this ->entitlementAttributes = $ entitlementAttributes ;
8072 }
8173
82- /**
83- * @param \Flexnet\EntitlementOrderService\Type\EntitlementLineItemDataType $activatableItemData
84- * @param string|null $parentBulkEntitlementId
85- * @param string|null $shipToEmail
86- * @param string|null $shipToAddress
87- * @param string|null $entitlementState
88- * @param \Flexnet\EntitlementOrderService\Type\ChannelPartnerDataListType|null $channelPartners
89- * @param \Flexnet\EntitlementOrderService\Type\AttributeDescriptorDataType|null $entitlementAttributes
90- */
91- public static function create (string $ activatableItemType , string $ entitlementId , string $ soldTo , EntitlementLineItemDataType $ activatableItemData , string |null $ parentBulkEntitlementId = null , string |null $ shipToEmail = null , string |null $ shipToAddress = null , string |null $ entitlementState = null , ChannelPartnerDataListType |null $ channelPartners = null , AttributeDescriptorDataType |null $ entitlementAttributes = null )
74+ public static function create (string $ activatableItemType , string $ entitlementId , string $ soldTo , EntitlementLineItemDataType $ activatableItemData , string $ parentBulkEntitlementId = null , string $ shipToEmail = null , string $ shipToAddress = null , string $ entitlementState = null , ChannelPartnerDataListType $ channelPartners = null , AttributeDescriptorDataType $ entitlementAttributes = null )
9275 {
9376 return new static (...\func_get_args ());
9477 }
@@ -106,12 +89,12 @@ public function withActivatableItemType(string $activatableItemType): Activatabl
10689 return $ new ;
10790 }
10891
109- public function getParentBulkEntitlementId (): string | null
92+ public function getParentBulkEntitlementId (): ? string
11093 {
11194 return $ this ->parentBulkEntitlementId ;
11295 }
11396
114- public function withParentBulkEntitlementId (string | null $ parentBulkEntitlementId ): ActivatableItemDetailType
97+ public function withParentBulkEntitlementId (? string $ parentBulkEntitlementId ): ActivatableItemDetailType
11598 {
11699 $ new = clone $ this ;
117100 $ new ->parentBulkEntitlementId = $ parentBulkEntitlementId ;
@@ -145,56 +128,50 @@ public function withSoldTo(string $soldTo): ActivatableItemDetailType
145128 return $ new ;
146129 }
147130
148- public function getShipToEmail (): string | null
131+ public function getShipToEmail (): ? string
149132 {
150133 return $ this ->shipToEmail ;
151134 }
152135
153- public function withShipToEmail (string | null $ shipToEmail ): ActivatableItemDetailType
136+ public function withShipToEmail (? string $ shipToEmail ): ActivatableItemDetailType
154137 {
155138 $ new = clone $ this ;
156139 $ new ->shipToEmail = $ shipToEmail ;
157140
158141 return $ new ;
159142 }
160143
161- public function getShipToAddress (): string | null
144+ public function getShipToAddress (): ? string
162145 {
163146 return $ this ->shipToAddress ;
164147 }
165148
166- public function withShipToAddress (string | null $ shipToAddress ): ActivatableItemDetailType
149+ public function withShipToAddress (? string $ shipToAddress ): ActivatableItemDetailType
167150 {
168151 $ new = clone $ this ;
169152 $ new ->shipToAddress = $ shipToAddress ;
170153
171154 return $ new ;
172155 }
173156
174- public function getEntitlementState (): string | null
157+ public function getEntitlementState (): ? string
175158 {
176159 return $ this ->entitlementState ;
177160 }
178161
179- public function withEntitlementState (string | null $ entitlementState ): ActivatableItemDetailType
162+ public function withEntitlementState (? string $ entitlementState ): ActivatableItemDetailType
180163 {
181164 $ new = clone $ this ;
182165 $ new ->entitlementState = $ entitlementState ;
183166
184167 return $ new ;
185168 }
186169
187- /**
188- * @return \Flexnet\EntitlementOrderService\Type\EntitlementLineItemDataType
189- */
190170 public function getActivatableItemData (): EntitlementLineItemDataType
191171 {
192172 return $ this ->activatableItemData ;
193173 }
194174
195- /**
196- * @param \Flexnet\EntitlementOrderService\Type\EntitlementLineItemDataType $activatableItemData
197- */
198175 public function withActivatableItemData (EntitlementLineItemDataType $ activatableItemData ): ActivatableItemDetailType
199176 {
200177 $ new = clone $ this ;
@@ -203,37 +180,25 @@ public function withActivatableItemData(EntitlementLineItemDataType $activatable
203180 return $ new ;
204181 }
205182
206- /**
207- * @return \Flexnet\EntitlementOrderService\Type\ChannelPartnerDataListType|null
208- */
209- public function getChannelPartners (): ChannelPartnerDataListType |null
183+ public function getChannelPartners (): ?ChannelPartnerDataListType
210184 {
211185 return $ this ->channelPartners ;
212186 }
213187
214- /**
215- * @param \Flexnet\EntitlementOrderService\Type\ChannelPartnerDataListType|null $channelPartners
216- */
217- public function withChannelPartners (ChannelPartnerDataListType |null $ channelPartners ): ActivatableItemDetailType
188+ public function withChannelPartners (?ChannelPartnerDataListType $ channelPartners ): ActivatableItemDetailType
218189 {
219190 $ new = clone $ this ;
220191 $ new ->channelPartners = $ channelPartners ;
221192
222193 return $ new ;
223194 }
224195
225- /**
226- * @return \Flexnet\EntitlementOrderService\Type\AttributeDescriptorDataType|null
227- */
228- public function getEntitlementAttributes (): AttributeDescriptorDataType |null
196+ public function getEntitlementAttributes (): ?AttributeDescriptorDataType
229197 {
230198 return $ this ->entitlementAttributes ;
231199 }
232200
233- /**
234- * @param \Flexnet\EntitlementOrderService\Type\AttributeDescriptorDataType|null $entitlementAttributes
235- */
236- public function withEntitlementAttributes (AttributeDescriptorDataType |null $ entitlementAttributes ): ActivatableItemDetailType
201+ public function withEntitlementAttributes (?AttributeDescriptorDataType $ entitlementAttributes ): ActivatableItemDetailType
237202 {
238203 $ new = clone $ this ;
239204 $ new ->entitlementAttributes = $ entitlementAttributes ;
0 commit comments