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