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