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