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