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