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