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