@@ -4956,6 +4956,7 @@ public function add_devices(array $device_ids, string $space_id): void
49564956 public function create (
49574957 string $ name ,
49584958 ?array $ acs_entrance_ids = null ,
4959+ mixed $ customer_data = null ,
49594960 ?string $ customer_key = null ,
49604961 ?array $ device_ids = null ,
49614962 ?string $ space_key = null ,
@@ -4968,6 +4969,9 @@ public function create(
49684969 if ($ acs_entrance_ids !== null ) {
49694970 $ request_payload ["acs_entrance_ids " ] = $ acs_entrance_ids ;
49704971 }
4972+ if ($ customer_data !== null ) {
4973+ $ request_payload ["customer_data " ] = $ customer_data ;
4974+ }
49714975 if ($ customer_key !== null ) {
49724976 $ request_payload ["customer_key " ] = $ customer_key ;
49734977 }
@@ -5133,6 +5137,7 @@ public function remove_devices(array $device_ids, string $space_id): void
51335137
51345138 public function update (
51355139 ?array $ acs_entrance_ids = null ,
5140+ mixed $ customer_data = null ,
51365141 ?string $ customer_key = null ,
51375142 ?array $ device_ids = null ,
51385143 ?string $ name = null ,
@@ -5144,6 +5149,9 @@ public function update(
51445149 if ($ acs_entrance_ids !== null ) {
51455150 $ request_payload ["acs_entrance_ids " ] = $ acs_entrance_ids ;
51465151 }
5152+ if ($ customer_data !== null ) {
5153+ $ request_payload ["customer_data " ] = $ customer_data ;
5154+ }
51475155 if ($ customer_key !== null ) {
51485156 $ request_payload ["customer_key " ] = $ customer_key ;
51495157 }
0 commit comments