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