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