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