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