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