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