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