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