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