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