DBTEAMLOGSharedFolderUnmountTypeSerializer
Objective-C
@interface DBTEAMLOGSharedFolderUnmountTypeSerializer : NSObject
Swift
class DBTEAMLOGSharedFolderUnmountTypeSerializer : NSObject
The serialization class for the SharedFolderUnmountType
struct.
-
Serializes
DBTEAMLOGSharedFolderUnmountType
instances.Declaration
Objective-C
+ (nullable NSDictionary<NSString *, id> *)serialize: (nonnull DBTEAMLOGSharedFolderUnmountType *)instance;
Swift
class func serialize(_ instance: DBTEAMLOGSharedFolderUnmountType) -> [String : Any]?
Parameters
instance
An instance of the
DBTEAMLOGSharedFolderUnmountType
API object.Return Value
A json-compatible dictionary representation of the
DBTEAMLOGSharedFolderUnmountType
API object. -
Deserializes
DBTEAMLOGSharedFolderUnmountType
instances.Declaration
Objective-C
+ (nonnull DBTEAMLOGSharedFolderUnmountType *)deserialize: (nonnull NSDictionary<NSString *, id> *)dict;
Swift
class func deserialize(_ dict: [String : Any]) -> DBTEAMLOGSharedFolderUnmountType
Parameters
dict
A json-compatible dictionary representation of the
DBTEAMLOGSharedFolderUnmountType
API object.Return Value
An instantiation of the
DBTEAMLOGSharedFolderUnmountType
object.