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