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