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