DBTEAMDesktopPlatformSerializer
Objective-C
@interface DBTEAMDesktopPlatformSerializer : NSObject
Swift
class DBTEAMDesktopPlatformSerializer : NSObject
The serialization class for the DBTEAMDesktopPlatform union.
-
Serializes
DBTEAMDesktopPlatforminstances.Declaration
Objective-C
+ (nullable NSDictionary<NSString *, id> *)serialize: (nonnull DBTEAMDesktopPlatform *)instance;Swift
class func serialize(_ instance: DBTEAMDesktopPlatform) -> [String : Any]?Parameters
instanceAn instance of the
DBTEAMDesktopPlatformAPI object.Return Value
A json-compatible dictionary representation of the
DBTEAMDesktopPlatformAPI object. -
Deserializes
DBTEAMDesktopPlatforminstances.Declaration
Objective-C
+ (nonnull DBTEAMDesktopPlatform *)deserialize: (nonnull NSDictionary<NSString *, id> *)dict;Swift
class func deserialize(_ dict: [String : Any]) -> DBTEAMDesktopPlatformParameters
dictA json-compatible dictionary representation of the
DBTEAMDesktopPlatformAPI object.Return Value
An instantiation of the
DBTEAMDesktopPlatformobject.
View on GitHub
DBTEAMDesktopPlatformSerializer Class Reference