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