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