Skip to content
Snippets Groups Projects
Commit f40347cf authored by Gregor Longariva's avatar Gregor Longariva :speech_balloon:
Browse files

Merge branch '3-new-device-type-visionos' into 'main'

Resolve "new device type visionos"

Closes #3

See merge request !4
parents 79e5a5fb bb48879f
Branches main
No related tags found
1 merge request!4Resolve "new device type visionos"
......@@ -15,6 +15,8 @@ public struct MobileDeviceDetailsGetV2: Codable, JSONEncodable, Hashable {
public enum ModelType: String, Codable, CaseIterable {
case ios = "ios"
case tvos = "tvos"
case watchos = "watchos"
case visionos = "visionos"
case unknown = "unknown"
}
public var id: String?
......
......@@ -15,6 +15,8 @@ public struct MobileDeviceDetailsV2: Codable, JSONEncodable, Hashable {
public enum ModelType: String, Codable, CaseIterable {
case ios = "ios"
case tvos = "tvos"
case watchos = "watchos"
case visionos = "visionos"
case unknown = "unknown"
}
public var id: String?
......
......@@ -15,6 +15,8 @@ public struct MobileDeviceV2: Codable, JSONEncodable, Hashable {
public enum ModelType: String, Codable, CaseIterable {
case ios = "ios"
case tvos = "tvos"
case watchos = "watchos"
case visionos = "visionos"
case unknown = "unknown"
}
public var id: String?
......
......@@ -33,6 +33,8 @@ Name | Type | Description | Notes
**type** | **String** | Based on the value of this either ios, appleTv, android objects will be populated. | [optional]
**ios** | [**IosDetailsV2**](IosDetailsV2.md) | | [optional]
**tvos** | [**TvOsDetails**](TvOsDetails.md) | | [optional]
**watchos** | [**WatchOsDetailsV2**](WatchOsDetailsV2.md) | | [optional]
**visionos** | [**DetailsV2**](DetailsV2.md) | | [optional]
**managementId** | **String** | | [optional] [readonly]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
......
......@@ -4,7 +4,7 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**mobileDeviceId** | **String** | | [optional] [readonly]
**deviceType** | **String** | Based on the value of this type either ios or appleTv objects will be populated. |
**deviceType** | **String** | Based on the value of this type either ios, appleTv, watch or visionOS objects will be populated. |
**hardware** | [**MobileDeviceHardware**](MobileDeviceHardware.md) | | [optional]
**userAndLocation** | [**MobileDeviceUserAndLocation**](MobileDeviceUserAndLocation.md) | | [optional]
**purchasing** | [**MobileDevicePurchasing**](MobileDevicePurchasing.md) | | [optional]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment