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