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