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