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