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