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