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