diff --git a/app/Models/Asset.php b/app/Models/Asset.php new file mode 100644 index 0000000..8c34919 --- /dev/null +++ b/app/Models/Asset.php @@ -0,0 +1,37 @@ + 'string', + 'tenant_id' => 'string', + 'customer_id' => 'string', + 'asset_profile_id' => 'string', + 'external_id' => 'string', + 'additional_info' => 'array', + ]; +} diff --git a/app/Models/AssetDeviceLink.php b/app/Models/AssetDeviceLink.php new file mode 100644 index 0000000..fd6012d --- /dev/null +++ b/app/Models/AssetDeviceLink.php @@ -0,0 +1,19 @@ + 'string', + 'tenant_id' => 'string', + 'external_id' => 'string', + 'additional_info' => 'array', + ]; +} \ No newline at end of file diff --git a/app/Models/Device.php b/app/Models/Device.php new file mode 100644 index 0000000..1ff718e --- /dev/null +++ b/app/Models/Device.php @@ -0,0 +1,43 @@ + 'string', + 'tenant_id' => 'string', + 'customer_id' => 'string', + 'device_profile_id' => 'string', + 'firmware_id' => 'string', + 'software_id' => 'string', + 'external_id' => 'string', + 'additional_info' => 'array', + 'device_data' => 'array', + ]; +}