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