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