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