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