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