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