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