DBSHARINGSharedLinkMetadataSerializer
Objective-C
@interface DBSHARINGSharedLinkMetadataSerializer : NSObject
Swift
class DBSHARINGSharedLinkMetadataSerializer : NSObject
The serialization class for the SharedLinkMetadata struct.
-
Serializes
DBSHARINGSharedLinkMetadatainstances.Declaration
Objective-C
+ (nullable NSDictionary<NSString *, id> *)serialize: (nonnull DBSHARINGSharedLinkMetadata *)instance;Swift
class func serialize(_ instance: DBSHARINGSharedLinkMetadata) -> [String : Any]?Parameters
instanceAn instance of the
DBSHARINGSharedLinkMetadataAPI object.Return Value
A json-compatible dictionary representation of the
DBSHARINGSharedLinkMetadataAPI object. -
Deserializes
DBSHARINGSharedLinkMetadatainstances.Declaration
Objective-C
+ (nonnull DBSHARINGSharedLinkMetadata *)deserialize: (nonnull NSDictionary<NSString *, id> *)dict;Swift
class func deserialize(_ dict: [String : Any]) -> DBSHARINGSharedLinkMetadataParameters
dictA json-compatible dictionary representation of the
DBSHARINGSharedLinkMetadataAPI object.Return Value
An instantiation of the
DBSHARINGSharedLinkMetadataobject.
View on GitHub
DBSHARINGSharedLinkMetadataSerializer Class Reference