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