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