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