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