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