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