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