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