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