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