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