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