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