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