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