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