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