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