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