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