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