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