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