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