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