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