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