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