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