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