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