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