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