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