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