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