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