DBTEAMTeamFolderMetadataSerializer
Objective-C
@interface DBTEAMTeamFolderMetadataSerializer : NSObject
Swift
class DBTEAMTeamFolderMetadataSerializer : NSObject
The serialization class for the TeamFolderMetadata struct.
-
Serializes
DBTEAMTeamFolderMetadatainstances.Declaration
Objective-C
+ (nullable NSDictionary<NSString *, id> *)serialize: (nonnull DBTEAMTeamFolderMetadata *)instance;Swift
class func serialize(_ instance: DBTEAMTeamFolderMetadata) -> [String : Any]?Parameters
instanceAn instance of the
DBTEAMTeamFolderMetadataAPI object.Return Value
A json-compatible dictionary representation of the
DBTEAMTeamFolderMetadataAPI object. -
Deserializes
DBTEAMTeamFolderMetadatainstances.Declaration
Objective-C
+ (nonnull DBTEAMTeamFolderMetadata *)deserialize: (nonnull NSDictionary<NSString *, id> *)dict;Swift
class func deserialize(_ dict: [String : Any]) -> DBTEAMTeamFolderMetadataParameters
dictA json-compatible dictionary representation of the
DBTEAMTeamFolderMetadataAPI object.Return Value
An instantiation of the
DBTEAMTeamFolderMetadataobject.
View on GitHub
DBTEAMTeamFolderMetadataSerializer Class Reference