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