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