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