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