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