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