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