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