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