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