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