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