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