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