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