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