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