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