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