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