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