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