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